brithwulf
brithwulf

Reputation: 548

Cannot click an object in Katalon Studio

I have some problems with Katalon Studio. I'm trying to do a simple thing, but when I'm trying to click on the search button, it doesn't work.

Also, it has a very long delay when the program opens a browser it takes 10-15 seconds to type a text in the search bar. Here is how the error looks like: enter image description here

enter image description here

Upvotes: 1

Views: 2866

Answers (2)

Tony Bui
Tony Bui

Reputation: 815

From the log file, it seems that you executed the test with IE. Generally, Selenium is a bit slow working with IE. Hence, the slow in starting browser is predicted.

Regarding to clicking the search button (the image, i guessed), there are log mentioned that the element could not be found. You might need to double check on: - The image is clickable using WebUI.waitForElementClickable - The locator is correct at Object Repository.

Upvotes: 1

Mate Mrše
Mate Mrše

Reputation: 8394

Add WebUI.waitForElementClickable(findTestObject('Page_Google/input_q'), 40) before the WebUI.setText().

Upvotes: 1

Related Questions