在Selenium-java-3.0.1中,我可以使用WebDriverWait.until进行显式等待:
new WebDriverWait(myChromeDriver, 30).until((ExpectedCondition<Boolean>) wd -> ((JavascriptExecutor) wd).executeScript("return document.readyState").equals("complete"));
上面的代码在Selenium-java-3.0.1中运行良好,直到我们升级到Selenium-java-3.2,其中类WebDriverWait从client-combined-3.3.0-nodeps.jar一起消失。
Selenium 3.2 / 3.3中相应的方法调用是什么?提前谢谢。
堆栈跟踪如下:
java.lang.NoSuchMethodError: org.openqa.selenium.support.ui.WebDriverWait.until(Lcom/google/common/base/Function;)Ljava/lang/Object;
at au.com.testpro.rft2selenium.objects.TestObject.waitForLoad(Unknown Source)
at au.com.testpro.rft2selenium.objects.TestObject.find(Unknown Source)
at au.com.testpro.rft2selenium.objects.TestObject.find(Unknown Source)
at test.ScriptSuperClass_JZ.findTestObject(ScriptSuperClass_JZ.java:65)
at test.refData_Verify.execute(refData_Verify.java:102)
at au.com.testpro.framework.java.superclasses.JavaFrameworkSuperClass.execute(Unknown Source)
at au.com.testpro.framework.java.superclasses.JavaFrameworkSuperClass.executeCsv(Unknown Source)
at test.refData_Verify.test(refData_Verify.java:486)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
答案 0 :(得分:2)
如果你使用wait.until并且不想改变很多东西,请快速修复:
我在selenium 3.1.0之前有一个全球WebDriverWait等待: WebDriverWait wait = new WebDriverWait(driver,30,5000);
我现在只是在3.3.1中使用它(它适用于我): FluentWait wait = new FluentWait&lt;&gt;(驱动程序) .withTimeout(30,SECONDS) .pollingEvery(5,SECONDS) .ignoring(NoSuchElementException.class);
当然,您需要将com.google.guava 21.0作为依赖项
答案 1 :(得分:1)
请将您正在使用的Guava
jar的版本更新为v-21
,每当硒版本发生更改时,建议您在开始使用之前阅读release notes版本。
答案 2 :(得分:1)
您可能拥有相互冲突的旧文件和dublicate文件。 更改版本包番石榴。 升级到guava-21.0.jar,这个问题得到了解决。 https://github.com/SeleniumHQ/selenium/issues/3880
我删除旧的selenium.jar文件并指向最新文件夹完成了这项工作。
答案 3 :(得分:1)
像这样在硒3中起作用
WebDriverWait wait = new WebDriverWait(driver,20)
wait.until(ExpectedConditions.visibilityofElementLocatedBy(By.xpath("xxx");
在硒4上看起来像
WebDriverWait wait = new WebDriverWait(driver,Duration.ofSeconds(20))
wait.until(ExpectedConditions.visibilityofElementLocatedBy(By.xpath("xxx");
答案 4 :(得分:0)
如果您正在使用pom.xml并再次收到相同的错误。只需转到 C /用户/ yoursystemuser / .m2目录/回购/ COM /谷歌/番石榴/ guavaVersions。
删除所有以前版本的番石榴并保持最新状态。 下面是guava依赖项的链接。您可能还需要检查您的selenium版本。
https://mvnrepository.com/artifact/com.google.guava/guava/23.0
答案 5 :(得分:0)
我建议按照以下条件创建一个参数化方法,并在需要的地方调用它:-waitinf可点击,等待可见性,等待隐形。方法如下:-
//等待直到传入的元素不可单击为止。
public void WaitForElementToBeClickable(WebElement element,long timeInSec)
{
WebDriverWait wait=new WebDriverWait(driver, timeInSec );
wait.until(ExpectedConditions.elementToBeClickable(element));
}
答案 6 :(得分:0)
在pom.xml中将番石榴更新为28.0-jre
答案 7 :(得分:-1)
明确等待或有条件等待。
WebDriverWait wait = new WebDriverWait(wb, 60);
wait.until(ExpectedConditions.elementToBeClickable(By.xpath("value")));
这将等待每个网页元素60秒。