I have a web application to test with selenium. There is a lot of javascript running on page load.
This javascript code is not so well written but I can't change anything.
So waiting for an element to appear in the dom with findElement() method is not an option.
I want to create a generic function in Java to wait for a page to load, a possible solution would be :
- run a javascript script form Webdriver and store the result of
document.body.innerHTMLin a string variablebody. - compare the
bodyvariable to the previous version ofbody. if they are the same then set increment a counternotChangedCountotherwise setnotChangedCountto zero. - wait for a litte time (50 ms for example).
- if the page has not changed for some time (500 ms for example) so
notChangedCount>= 10 then exit the loop otherwise loop to the first step.
Do you think it's a valid solution ?
findElementwaits for an element to be available, but sometimes the element is available before the javascript code is initialized completely, that's why it's not an option. – psadac May 23 '12 at 13:36