高级陈旧元素

时间:2016-07-19 14:48:51

标签: java selenium staleobjectstate

我一直在阅读陈旧的元素,我仍然有点困惑。例如,以下工作没有成功,对吗?

 public void clickFoo(WebElement ele) {
    try {
      ele.click();
    } catch (StaleElementReferenceException ex) {
      ele.click();
    }
 }

因为如果ele过时,它将保持陈旧。最好的方法是重做driver.findElement(By),但正如您在本示例中所看到的,没有xpath。您可以尝试ele.getAttribute(" id")并使用它,但如果元素没有id,这也不起作用。调用它的所有方法都必须将try / catch放在它周围,这可能是不可行的。

还有其他方法可以重新构建元素吗?另外,假设有一个id,在元素过期后id会保持不变吗?一旦它过时,WebElement对象ele中的内容是不同的?

(Java Eclipse)

1 个答案:

答案 0 :(得分:1)

我建议你不要创建类似上面的方法。无需在.click()之上添加其他功能图层。只需在元素本身上调用.click()即可。

driver.findElement(By.id("test-id")).click();

WebElement e = driver.findElement(By.id("test-id"));
e.click();

我经常使用以避免过时元素的一种方法是仅在需要时才查找元素,通常我在页面对象方法中执行此操作。这是一个简单的例子。

主页的页面对象。

public class HomePage
{
    private WebDriver driver;
    public WebElement staleElement;
    private By waitForLocator = By.id("sampleId");

    // please put the variable declarations in alphabetical order
    private By sampleElementLocator = By.id("sampleId");

    public HomePage(WebDriver driver)
    {
        this.driver = driver;
        // wait for page to finish loading
        new WebDriverWait(driver, 10).until(ExpectedConditions.presenceOfElementLocated(waitForLocator));

        // see if we're on the right page
        if (!driver.getCurrentUrl().contains("samplePage.jsp"))
        {
            throw new IllegalStateException("This is not the XXXX Sample page. Current URL: " + driver.getCurrentUrl());
        }
    }

    public void clickSampleElement()
    {
        // sample method code goes here
        driver.findElement(sampleElementLocator).click();
    }
}

使用它

WebDriver driver = new FirefoxDriver();
driver.manage().window().maximize();
driver.get("http://www.example.com");
HomePage homePage = new HomePage(driver);
homePage.clickSampleElement();
// do stuff that changes the page and makes the element stale
homePage.clickSampleElement();

现在我不再需要依赖旧的参考。我只是再次调用该方法,它为我完成所有工作。

页面对象模型有很多参考。这是来自Selenium wiki的一个。 http://www.seleniumhq.org/docs/06_test_design_considerations.jsp#page-object-design-pattern

如果您想阅读有关陈旧元素的更多信息,那么文档会有很好的解释。 http://docs.seleniumhq.org/exceptions/stale_element_reference.jsp