Selenium's open
command implicitly waits for the whole page to load, including images, etc.
How do I just wait for the DOM to load, like jQuery's .ready() method?
Currently, I'm using waitForElementPresent, but is there a better alternative?
Selenium's open
command implicitly waits for the whole page to load, including images, etc.
How do I just wait for the DOM to load, like jQuery's .ready() method?
Currently, I'm using waitForElementPresent, but is there a better alternative?
I think you may try to do the following