Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you make Selenium wait for the page to load in Selenium 2.0?

share|improve this question

12 Answers

Use class WebDriverWait

Also see here

You can expect to show some element. something like in C#:

WebDriver _driver = new WebDriver();
WebDriverWait _wait = new WebDriverWait(_driver, TimeSpan(0, 1, 0));

_wait.Until(d => d.FindElement(By.Id("Id_Your_UIElement"));
share|improve this answer
This worked great. Its a very nice modern way to solve the problem. – CrazyDart Nov 17 '11 at 6:23
1  
It should be noted that FluentWait is a much newer and better way though. – djangofan Apr 6 at 19:29

You can also check pageloaded using following code

IWait<IWebDriver> wait = new OpenQA.Selenium.Support.UI.WebDriverWait(driver, TimeSpan.FromSeconds(30.00));

 wait.Until(driver1 => ((IJavaScriptExecutor)driver).ExecuteScript("return document.readyState").Equals("complete"));
share|improve this answer
+1: thanks, seems to work as expected. – rsenna Dec 11 '12 at 21:51

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)

share|improve this answer
1  
Adding to Paul's answer. Please check this also stackoverflow.com/questions/5858743/…. – 9ikhan May 4 '11 at 3:56
4  
Unfortunately, Selenium 2 doesn't wait in all cases for a page to load. For example WebElement:click() doesn't wait and this is explicitly said in the belonging Javadoc. However, they don't tell how I can check for a new page to be loaded. If click() causes a new page to be loaded via an event or is done by sending a native event (which is a common case on Firefox, IE on Windows) then the method will not wait for it to be loaded and the caller should verify that a new page has been loaded. – Sebi Sep 28 '11 at 9:20

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.

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

source: implicit-waits

share|improve this answer

If you want to wait for a specific element to load, you can use the "isDisplayed()" method on a "RenderedWebElement" :

// Sleep until the div we want is visible or 5 seconds is over
long end = System.currentTimeMillis() + 5000;
while (System.currentTimeMillis() < end) {
    // Browsers which render content (such as Firefox and IE) return "RenderedWebElements"
    RenderedWebElement resultsDiv = (RenderedWebElement) driver.findElement(By.className("gac_m"));

    // If results have been returned, the results are displayed in a drop down.
    if (resultsDiv.isDisplayed()) {
      break;
    }
}

(Example from The 5 Minute Getting Started Guide)

share|improve this answer
4  
A year later (current Selenium version 2.23.1), there's no RenderedWebElement in the API. However, isDisplayed() method is now available directly on WebElement. – Slanec Jun 10 '12 at 12:56
Polling is terrible when it can be avoided. – reinierpost Aug 14 '12 at 12:46

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.

share|improve this answer
It's simple if the site is yours to modify! – reinierpost Aug 14 '12 at 12:41

You can also use the class: ExpectedConditions to explicitly wait for an element to show up on the webpage before you can take any action further actions

You can use the ExpectedConditions class to determine if an element is visible:

WebElement element = (new WebDriverWait(getDriver(), 10)).until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector("input#houseName")));

See ExpectedConditions class Javadoc for list of all conditions you are able to check.

share|improve this answer

2 years later, ruby implementation

  wait = Selenium::WebDriver::Wait.new(:timeout => 10)
  wait.util {
    @driver.execute_script("return document.readyState;") == "complete" 
  }
share|improve this answer

You can explicitly wait for an element to show up on the webpage before you can take any action (like element.click())

driver.get("http://somedomain/url_that_delays_loading");
WebElement myDynamicElement = (new WebDriverWait(driver, 10))
  .until(new ExpectedCondition<WebElement>(){
        @Override
        public WebElement apply(WebDriver d) {
        return d.findElement(By.id("myDynamicElement"));
}});

This is what I used for a similar scenario and it works fine.

share|improve this answer
i think driver.get waits for the onload function to finish before return control to the code, unless the page has alot of ajax – goh Apr 20 '12 at 4:44

SeleniumWaiter :

import com.google.common.base.Function;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.WebDriverWait;

public class SeleniumWaiter {

      private WebDriver driver;

      public SeleniumWaiter(WebDriver driver) {
           this.driver = driver;
      }

      public WebElement waitForMe(By locatorname, int timeout){
           WebDriverWait wait = new WebDriverWait(driver, timeout);
           return wait.until(SeleniumWaiter.presenceOfElementLocated(locatorname));
      }

      public static Function<WebDriver, WebElement> presenceOfElementLocated(final By locator) {
            // TODO Auto-generated method stub
            return new Function<WebDriver, WebElement>() {
                 @Override
                 public WebElement apply(WebDriver driver) {
                      return driver.findElement(locator);
                 }
            };
      }
 }

And to you use it :

_waiter = new SeleniumWaiter(_driver);

try {
   _waiter.waitForMe(By.xpath("//..."), 10);
} catch (Exception e) {
   // error
}
share|improve this answer

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 :

public class IFrame1 extends LoadableComponent<IFrame1> {

    private RemoteWebDriver driver;

    @FindBy(id = "iFrame1TextFieldTestInputControlID" )
    public WebElement iFrame1TextFieldInput;

    @FindBy(id = "iFrame1TextFieldTestProcessButtonID" )
    public WebElement copyButton;

    public IFrame1( RemoteWebDriver drv ) {
        super();
        this.driver = drv;
        this.driver.switchTo().defaultContent();
        waitTimer(1, 1000);
        this.driver.switchTo().frame("BodyFrame1");
        LOGGER.info("IFrame1 constructor...");
    }

    @Override
    protected void isLoaded() throws Error {        
        LOGGER.info("IFrame1.isLoaded()...");
        PageFactory.initElements( driver, this );
        try {
            assertTrue( "Page visible title is not yet available.", driver
     .findElementByCssSelector("body form#webDriverUnitiFrame1TestFormID h1")
                    .getText().equals("iFrame1 Test") );
        } catch ( NoSuchElementException e) {
            LOGGER.info("No such element." );
            assertTrue("No such element.", false);
        }
    }

    @Override
    protected void load() {
        LOGGER.info("IFrame1.load()...");
        Wait<WebDriver> wait = new FluentWait<WebDriver>( driver )
                .withTimeout(30, TimeUnit.SECONDS)
                .pollingEvery(5, TimeUnit.SECONDS)
                .ignoring( NoSuchElementException.class ) 
                .ignoring( StaleElementReferenceException.class ) ;
            wait.until( ExpectedConditions.presenceOfElementLocated( 
            By.cssSelector("body form#webDriverUnitiFrame1TestFormID h1") ) );
    }
....

NOTE: You can see my entire working example here.

share|improve this answer

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.

DefaultSelenium selenium = createSeleniumClient("http://localhost:8080/");
selenium.start();

selenium.click("link=JVM");
selenium.waitForPageToLoad("30000");
share|improve this answer
Isn't that selenium 1.x syntax? – Paul Hadfield May 3 '11 at 22:23
2  
It is Selenium 1 syntax – Tristan May 24 '11 at 8:58
Actually, you are onto something. I'll give you an upvote for almost getting it. For Selenium2, there is a way to change the implicit page wait in selenium like so: driver.manage().timeouts().setPageLoadTimeout( 10, TimeUnit.MILLISECONDS ); – djangofan Apr 6 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.