我正在使用Selenium 3.4和Java.使用Chrome,一切正常.但是我需要使用Firefox,并且有些东西会中断.
我正在自动测试Dojo UI,并且需要等待Dojo UI进行大量渲染.所以这就是我所做的,它在Chrome中运行得很好.请注意,通常在我的代码中设置隐式等待20秒.
driver.switchTo().defaultContent();
driver.switchTo().frame(driver.findElement(By.id("contentframe"))); // relying on implicit wait
driver.manage().timeouts().implicitlyWait(0,TimeUnit.SECONDS);
(new WebDriverWait(driver,120)).
until(ExpectedConditions.elementToBeClickable(By.id("some_id")));
我已经简化了代码,因此您不会看到隐式等待如何设置回20秒.当问题发生时,无论如何它都无法到达那里. WebDriverWait导致异常.异常说TypeError:无法访问死对象
等待中有相应的消息:
May 16,2017 3:36:11 PM org.openqa.selenium.support.ui.ExpectedConditions findElement
WARNING: WebDriverException thrown by findElement(By.id:
some_id)
org.openqa.selenium.WebDriverException: TypeError: can't access dead object
显然,geckodriver还有一些JavaScript错误输出:
JavaScript error: chrome://marionette/content/listener.js,line 1555: TypeError: can't access dead object
*************************
A coding exception was thrown and uncaught in a Task.
Full message: TypeError: can't access dead object
Full stack: find_@chrome://marionette/content/element.js:284:7
element.find/
此外,我的自动异常处理试图截取屏幕截图,但失败时出现同样的错误.代码行是:
文件snapshotTempFile =((TakesScreenshot)驱动程序).getScreenshotAs(OutputType.FILE);
而这次geckodriver的输出是:
A coding exception was thrown and uncaught in a Task.
Full message: TypeError: can't access dead object
Full stack: capture.viewport@chrome://marionette/content/capture.js:65:7
takeScreenshot@chrome://marionette/content/listener.js:1782:14
dispatch/
那么,我可以做任何事情来使这项工作正常吗?这是我需要提出的作为geckodriver bug的东西吗?
我唯一可以谷歌出来的是:https://github.com/mozilla/geckodriver/issues/614和唯一提出的解决方案是driver.switchTo().defaultContent().这可能会修复我的截图例程,但我正在等待的元素在内容框架内,所以我不能使用此修复程序进行等待.
最佳答案
原文链接:https://www.f2er.com/java/437405.html