WebDriver common exceptions
When you encounter the following exception: org.openqa.selenium.WebDriverException: Element is not clickable at point (x, y). Other elements would receive the click: ....
Click on the element using the
Execute Javascript keyword instead. To learn more about the Javascript keyword, you can refer to this document here: [WebUI] Execute JavaScript.import com.kms.katalon.core.webui.common.WebUiCommonHelper
WebElement element = WebUiCommonHelper.findWebElement(findTestObject('your/object'),30)
WebUI.executeJavaScript("arguments[0].click()", Arrays.asList(element))
When you encounter the following exception: Caused by: org.openqa.selenium.WebDriverException: unknown error: result.webdriverValue.value list is missing or empty in Runtime.callFunctionOn response.
Go to Tools > Update WebDrivers and select Chrome to update your ChromeDriver.
