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

How to use explicit wait in pageobject fields? I have a pageobject class in which i declare fields and use the FindBy tag to instantiate them. How can i add a explicit wait for some of or all of those fields declared in the

share|improve this question

2 Answers

My solution is to not use @FindBy.

In your page object:

   By someElementLocator = By.cssSelector(".locator");

   public void waitForElementPresent(final By locator, int timeout) {
    ExpectedCondition e = new ExpectedCondition<Boolean>() {
        public Boolean apply(WebDriver driver) {

            return driver.findElements(locator).size() > 0;
        }
    };

    WebDriverWait wait = new WebDriverWait(driver, timeout);
    wait.until(e);

}

  public WebElement getSomeElement() {
    waitForElementPresent(someElementLocator);
    return driver.findElement(locator);
  }

Maybe it's an architectural issue. I can't seem to find any resources confirming that @FindBy support waits so maybe its usage depends on a test design/architecture.

share|improve this answer

Take a look at the Explicit and implicit waits section in the Selenium Web Driver documentation here.

Basically, if you want to do it explicitly:

WebDriver driver = new FirefoxDriver();
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"));
        }});

Or, implicitly (note this only needs to be done once for the Web Driver, it will keep using this setting on subsequent findElement() calls:

WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("http://somedomain/url_that_delays_loading");
WebElement myDynamicElement = driver.findElement(By.id("myDynamicElement"));

Note: The above code is taken straight out of the Selenium Documentation from the provided link, and was put here just as a convenience.

share|improve this answer
4  
Hi navinp i know this already, but my question is how to do this in a pageobject model.While declaring the fields using @FindBy annotation it internally invokes the findElement method from WebDriver class. But i need to add a explicitly wait method for each and every field that i declare in the pageobject class. – jerald Sep 16 '11 at 5:07
I'm also having difficulty using the page object design pattern, as when I return a new PageObject, I can not figure out how to get the driver to wait until my new page loads ( if it does ) such as using a LoginPage object with a Login Function to return a new HomePage object. Check out my stackoverflow question here – Patrick Magee Nov 16 '11 at 11:25

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.