Element click intercepted exception
When you encounter the following exception: org.openqa.selenium.ElementClickInterceptedException: element click intercepted: Element is not clickable at point
- If the test case fails because there is another object covering the target element, for example, a pop-up dialog, you can add actions to remove the object before the Click action.
- If the Default wait for element timeout setting is not long enough for Katalon to click on the target element behind an overlay, you can add the
WebUI.waitForElementClickable
keyword before the Click action. To learn more about using theWebUI.waitForElementClickable
keyword, you can refer to this document here: [WebUI] Wait For Element Clickable.