我正在尝试在脚本中添加显式等待,但是我收到以下错误
"无法解析com.google.common.base.Function类型。它是 间接引用所需的.class文件"
我的代码
WebElement okButton;
okButton = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//button[@id='buttonResolveResultOk']")));
答案 0 :(得分:1)
我将我的番石榴更新到最新,这帮助我解决了这个问题
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>