gpt4 book ai didi

java - 如何让 Selenium-WebDriver 在 Java 中等待几秒钟?

转载 作者:IT老高 更新时间:2023-10-28 11:30:10 28 4
gpt4 key购买 nike

我正在开发 Java Selenium-WebDriver。我加了

driver.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);

WebElement textbox = driver.findElement(By.id("textbox"));

因为我的应用程序需要几秒钟来加载用户界面。所以我设置了 2 秒的隐式等待。但我无法找到元素文本框

然后我添加 Thread.sleep(2000);

现在它工作正常。哪个是更好的方法?

最佳答案

嗯,有两种等待:显式等待和隐式等待。显式等待的想法是

WebDriverWait.until(condition-that-finds-the-element);

隐式等待的概念是

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

您可以了解细节here .

在这种情况下,我更喜欢使用显式等待(特别是 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;
};

fluentWait 函数返回您找到的网页元素。从 fluentWait 的文档中:Wait 接口(interface)的一个实现,它可以动态配置其超时和轮询间隔。每个 FluentWait 实例定义等待条件的最长时间,以及检查条件的频率。此外,用户可以将等待配置为在等待时忽略特定类型的异常,例如在页面上搜索元素时的 NoSuchElementExceptions。详情可获取here

fluentWait 在您的情况下的用法如下:

WebElement textbox = fluentWait(By.id("textbox"));

恕我直言,这种方法更好,因为您不确切知道要等待多少时间,并且在轮询间隔中,您可以设置任意时间值来验证元素的存在。问候。

关于java - 如何让 Selenium-WebDriver 在 Java 中等待几秒钟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12858972/

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