How do you make Selenium wait for the page to load in Selenium 2.0?
|
Use class WebDriverWait Also see here You can expect to show some element. something like in C#:
|
|||
|
You can also check pageloaded using following code
|
||||
|
|
|
In general, with selenium 2.0 the web driver should only return control to the calling code once it has determined that the page has loaded. If it does not you can call waitforelemement, which cycles round calling findelement until it is found or times out (time out can be set) |
|||||||||
|
|
If you set the implicit wait of the driver, then call the findElement method on an element you expect to be on the loaded page, the WebDriver will poll for that element until it finds the element or reaches the time out value.
source: implicit-waits |
||||
|
|
|
If you want to wait for a specific element to load, you can use the "isDisplayed()" method on a "RenderedWebElement" :
(Example from The 5 Minute Getting Started Guide) |
|||||||
|
|
This seems to be a serious limitation of WebDriver. Obviously waiting for an element will not imply the page being loaded, in particular the DOM can be fully build (onready state) whereby JS is still executing and CSS and images are still loading. I believe the simplest solution is to set a JS variable upon the onload event after everything is initialized and check and wait for this JS variable in Selenium. |
|||
|
|
|
You can also use the class: You can use the
See |
||||
|
|
|
2 years later, ruby implementation
|
|||
|
|
|
You can explicitly wait for an element to show up on the webpage before you can take any action (like element.click())
This is what I used for a similar scenario and it works fine. |
|||
|
|
SeleniumWaiter :
And to you use it :
|
|||
|
|
|
They key is to use FluentWait and handle the exceptions while an element is missing. Here is how I do a wait for an iFrame to finish loading. This requires that your JUnit test class pass the instance of RemoteWebDriver into the page object :
NOTE: You can see my entire working example here. |
|||
|
|
|
I guess you wanted to know the usage of waitForPageLoad() method. waitForPageLoad() Pasted below a sample code, which create a Selenium client, clicks a link and waits for 30 secs to load. Hope this helps, if you can add more information to the question we can help you out with the required information.
|
|||||||||
|