Facing issue in running the script on chrome browser, but same script working on Mozilla browser

org.openqa.selenium.WebDriverException: unknown error: result.webdriverValue.value list is missing or empty in Runtime.callFunctionOn response

Facing above error when I try to run my script on chrome browser. But the same script working fine in Mozilla firefox. Please suggest solutions

import static com.kms.katalon.core.checkpoint.CheckpointFactory.findCheckpoint

import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase

import static com.kms.katalon.core.testdata.TestDataFactory.findTestData

import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject

import static com.kms.katalon.core.testobject.ObjectRepository.findWindowsObject

import com.kms.katalon.core.checkpoint.Checkpoint as Checkpoint

import com.kms.katalon.core.cucumber.keyword.CucumberBuiltinKeywords as CucumberKW

import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile

import com.kms.katalon.core.model.FailureHandling as FailureHandling

import com.kms.katalon.core.testcase.TestCase as TestCase

import com.kms.katalon.core.testdata.TestData as TestData

import com.kms.katalon.core.testng.keyword.TestNGBuiltinKeywords as TestNGKW

import com.kms.katalon.core.testobject.TestObject as TestObject

import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WS

import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI

import com.kms.katalon.core.windows.keyword.WindowsBuiltinKeywords as Windows

import internal.GlobalVariable as GlobalVariable

import org.openqa.selenium.Keys as Keys

WebUI.openBrowser(‘’)

WebUI.navigateToUrl(‘----------URL-------------------------’)

WebUI.click(findTestObject(‘Object Repository/Page_IBOGO/button_Login’))

WebUI.verifyElementVisible(findTestObject(‘LoginObj/Page_IBOGO/label_Please enter your email id’))

WebUI.closeBrowser()

2 Likes

can u please share the version of katalon studio in which you are facing this issue?

1 Like

I have found a solution to this:

I am also going to suggest that you add some “wait” statements to have your future test scripts run more “consistently”, regardless of the browser or network.

WebUI.openBrowser('')

WebUI.navigateToUrl('----------URL-------------------------')
WebUI.waitForPageLoad(10)

WebUI.waitForElementVisible(findTestObject('Object Repository/Page_IBOGO/button_Login'), 10)
WebUI.click(findTestObject('Object Repository/Page_IBOGO/button_Login'))
1 Like

Will follow this…Thank you…!

1 Like

@archana0393 - First do as suggested by @kazurayam @grylion54 , after that if issue in not resolved then please share some steps or Error log where is issue.

1 Like

it worked …!