erro code is :
Test Cases/learnKatalonWebTest FAILED.
Reason:
com.kms.katalon.core.exception.StepFailedException: Unable to click on object ‘Object Repository/Page_/a_Sign Up’ (Root cause: org.openqa.selenium.WebDriverException: unknown error: Element … is not clickable at point (1320, 118). Other element would receive the click:
what can i do?
I’ve nearly set chrome webdriver to maximize.
The system is telling you that something else on the page is going to receive your click. You could try adding a wait command before issuing the click:
As you can see, I’ve added the waiting code, but I still can’t click on label a often.
waiting code:
WebUI.navigateToUrl(‘http://192.168.xxx.xxx/project/about.html’)
WebUI.waitForElementPresent(findTestObject(‘Page_/a_Sign Up’), 30)
Sometimes the element is not visible therefore the click will not be performed successfully. A common solution is to wait for it to become visible, or wait for the page to be fully loaded. That explains why @francoarebuffi’s solution works for you.