无论如何要使用捕获/记录灯箱(Ajax)
硒 IDE
?
不确定 Selenium IDE 是否以您期望的形式捕获/记录 Light Box (Ajax)。看
Selenium IDE 能够捕获导致 LightBox 出现的点击的事实。但是很难注册从服务器获取所有 AJAX 所需的时间。作为 QA selenium 自动化(在 java 上编写),我更喜欢另一种方法。您可以使用 webDriverWait 条件:
WebDriverWait wait = new WebDriverWait(yourWebDriver, 5);
wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//xpath_to_element")));
如此处所述
或者您可以调用fluentWait
机制:
public WebElement fluentWait(final By locator){
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(30, TimeUnit.SECONDS)
.pollingEvery(5, TimeUnit.SECONDS)
.ignoring(NoSuchElementException.class);
WebElement foo = wait.until(
new Function<WebDriver, WebElement>() {
public WebElement apply(WebDriver driver) {
return driver.findElement(locator);
}
}
);
return foo; } ;
这种流畅的等待方法返回您找到的可以操作的 webElement。 用法:
String xPathElement ="...blablab.....";
WebElement found = fluentWait(By.xpath(xPathElement));
found.click();
//found.getText().trim():
希望这对你有帮助