如果我使用thread.sleep(20000)
,请使用webdriver代码。它等了20秒,我的代码也运行正常。
如果我使用隐式等待,则存档相同的内容,如
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
它没有等待20秒,而是在3到4秒内进入下一步。并且页面仍在加载。
这是有线的情况,因为我正在使用流利的等待找到一些元素。如果元素仍然在页面上加载,则它不会显示错误并使测试通过。
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(50, 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(By.id("jxxx"));
}
});
但是,如果我说错了ID,它会等待50秒,但是其他测试没有点击就通过了......它没有显示任何错误。
我的问题是我应该如何避免Thread.sleep()
因为其他硒方法没有帮助我..
答案 0 :(得分:3)
使用以下方法等待元素:
public boolean waitForElementToBePresent(By by, int waitInMilliSeconds) throws Exception
{
int wait = waitInMilliSeconds;
int iterations = (wait/250);
long startmilliSec = System.currentTimeMillis();
for (int i = 0; i < iterations; i++)
{
if((System.currentTimeMillis()-startmilliSec)>wait)
return false;
List<WebElement> elements = driver.findElements(by);
if (elements != null && elements.size() > 0)
return true;
Thread.sleep(250);
}
return false;
}
以下方法是等待页面加载:
public void waitForPageLoadingToComplete() throws Exception {
ExpectedCondition<Boolean> expectation = new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver driver) {
return ((JavascriptExecutor) driver).executeScript(
"return document.readyState").equals("complete");
}
};
Wait<WebDriver> wait = new WebDriverWait(driver, 30);
wait.until(expectation);
}
假设您正在等待加载页面。然后使用等待时间和页面加载后出现的任何元素调用第一个方法,然后它将返回true
,其他明智的false
。使用它,
waitForElementToBePresent(By.id("Something"), 20000)
上面调用的函数会等到它在给定的持续时间内找到给定的元素。
在上述方法
之后尝试以下任何代码WebDriverWait wait = new WebDriverWait(webDriver, timeoutInSeconds);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id<locator>));
或
wait.until(ExpectedConditions.elementToBeClickable(By.id<locator>));
更新
public boolean waitForTextFiled(By by, int waitInMilliSeconds, WebDriver wdriver) throws Exception
{
WebDriver driver = wdriver;
int wait = waitInMilliSeconds;
int iterations = (wait/250);
long startmilliSec = System.currentTimeMillis();
for (int i = 0; i < iterations; i++)
{
if((System.currentTimeMillis()-startmilliSec)>wait)
return false;
driver.findElement(By.id("txt")).sendKeys("Something");
String name = driver.findElement(by).getAttribute("value");
if (name != null && !name.equals("")){
return true;
}
Thread.sleep(250);
}
return false;
}
这将尝试在文本字段中输入文本,直到以毫秒为单位给出时间。如果getAttribute()
不适合您的情况,请使用getText()
。如果文本被激活,则返回true。把你可以等到的最长时间放在一起。
答案 1 :(得分:0)
您可能需要尝试此操作才能使元素在屏幕上显示。
new WebDriverWait(10, driver).until(ExpectedConditions.visibilityOfElementLocated(By.id("jxxx")).
在这种情况下,等待时间最长为10秒。