Back
How can I get selenium to wait for something like a calendar widget to load? Right now I am just doing a Thread.sleep(2500) after exporting the test case to a junit program.
You could use
waitForElementPresent(locator)
Which will wait until the element present in the document object model
To check the visibility of element use the following code
waitForElementHeight(locator)
31k questions
32.8k answers
501 comments
693 users