WebDriver exception: Element is not clickable at point (x, y)
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))