gpt4 book ai didi

java - 等到元素未找到或隐藏

转载 作者:行者123 更新时间:2023-11-30 04:24:44 24 4
gpt4 key购买 nike

我想等待我的线程,直到元素不存在或隐藏。尝试这样的代码

new WebDriverWait(driver, TIME_OUT_SECS).until(new ExpectedCondition<WebElement>() {
@Override
public Boolean apply(WebDriver d) {
return !d.findElement(by).isDisplayed();
}
});

但出现错误

attempting to use incompatible return type

最佳答案

可能只是自动装箱失败 - 您是否尝试更改

return !d.findElement(by).isDisplayed();

return (Boolean)!d.findElement(by).isDisplayed();

?由于 isDisplayed 返回 boolean 但您实际上需要 Boolean应该自动装箱,但关于自动装箱您永远不知道。

关于java - 等到元素未找到或隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16235188/

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