gpt4 book ai didi

selenium - 继续刷新页面直到出现某个元素?

转载 作者:行者123 更新时间:2023-12-04 04:36:31 25 4
gpt4 key购买 nike

我有一个场景,我想不断刷新页面,直到页面中出现某些元素。任何人都可以帮助我吗?

我正在使用下面的代码,但页面在五秒后没有刷新

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);
}
});

谢谢

苏丹苏

最佳答案

尝试使用 FluentWait类。

   // Waiting 30 seconds for an element to be present on the page, checking
// for its presence once every 5 seconds.
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(30, SECONDS)
.pollingEvery(5, SECONDS)
.ignoring(NoSuchElementException.class);

WebElement foo = wait.until(new Function<WebDriver, WebElement>() {
public WebElement apply(WebDriver driver) {
return driver.findElement(By.id("foo"));
}
});

这样,Selenium 将等待一段时间,直到加载了某些元素。

我希望这会解决您的问题,这样您就不必刷新页面。

编辑:

MrTi友情提示,上面的代码不会刷新你的页面。它只会等待一段时间,直到某些元素被加载。我只是认为它可以解决问题,而无需刷新页面。如果这不能解决您的问题并且您仍然需要刷新您的页面,那么您需要添加 driver.navigate().refresh()在返回之前,像这样:
   // Waiting 30 seconds for an element to be present on the page, checking
// for its presence once every 5 seconds.
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(30, SECONDS)
.pollingEvery(5, SECONDS)
.ignoring(NoSuchElementException.class);

WebElement foo = wait.until(new Function<WebDriver, WebElement>() {
public WebElement apply(WebDriver driver) {
driver.navigate().refresh()
return driver.findElement(By.id("foo"));
}
});

关于selenium - 继续刷新页面直到出现某个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19674898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com