Selenium WebDriver可以结合ExpectedCondition类来定义自己期望的条件
创建一个新的ExpectedCondition接口,必须实现apply方法
等待元素出现
public void testWithImplicitWait(){
System.setProperty("webdriver.chrome.driver", "chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://map.baidu.com"); //点击展开当前城市
WebElement curCity = driver.findElement(By.id("curCity"));
curCity.click(); //设置等待时间10秒
WebDriverWait wait = new WebDriverWait(driver,10);
//创建一个新的ExpecctedCondition接口,就必须实现apply方法
WebElement message = wait.until(
new ExpectedCondition<WebElement>(){
public WebElement apply(WebDriver d){
return d.findElement(By.id("selCityHotCityId"));
}
}
); driver.quit();
}
示例代码
等待元素属性值改变
基于某些事件的操作后,元素的属性值可能会改变。例如,一个不可输入的文本框变为可输入状态。自定义的等待可以在元素的属性上实现。
在这个例子中,ExpectedCondition类将等待返回Boolean值
(new WebDriverWait(driver, 10).util(new ExpectedCondition<Boolean>(){
public Boolean apply(WebDriver d){
return d.findElement(By.id("username")).
getAttribute("readonly").contains("true");
}
}));
等待元素变为可见
开发人员会隐藏或是在一系列操作后显示某元素。指定的元素一开始已经存在于DOM中,但是为隐藏状态,当用户经过指定的操作后变为可见。那么这样的自定义期望条件应该如下:
(new WebDriverWait(driver, 10).util(new ExpectedCondition<Boolean>(){
public Boolean apply(WebDriver d){
return d.findElement(By.id("xxx")).isDisplayed();
}
}));
等待DOM事件
自定义的等待可以通过执行一段javascript代码并检查返回值来完成
(new WebDriverWait(driver,10)).until(new ExpectedCondition<Boolean>(){
public Boolean apply(WebDriver d){
JavascriptExecutor js = (JavascriptExecutor) d;
return (Boolean)js.executeScript("return jQuery.active == 0");
}
});