运行 使用 IE 和 Selenium 进行测试 Java
Run Test With IE And Selenium Java
我想 运行 使用 IE11 和 IEDriverServer=3.13、Selenium 3.13 进行自动化测试出现以下错误:
déc. 25, 2018 4:57:14 PM org.openqa.selenium.support.ui.ExpectedConditions
findElement
AVERTISSEMENT: WebDriverException thrown by findElement(By.xpath: //*
[@name='login'])
org.openqa.selenium.NoSuchWindowException: Currently focused window has been
closed.
发生这种情况的原因有多种,但在您的情况下,它在 chrome 和 Firefox 中都运行良好。可能你的ie浏览器的缩放级别可能大于或小于100%或降级ie驱动版本和测试。
谢谢
将此用于您的自定义尺寸:
driver.manage().window().setSize(新维度(1024,768));
您可以根据您的要求更改尺寸。
我想 运行 使用 IE11 和 IEDriverServer=3.13、Selenium 3.13 进行自动化测试出现以下错误:
déc. 25, 2018 4:57:14 PM org.openqa.selenium.support.ui.ExpectedConditions
findElement
AVERTISSEMENT: WebDriverException thrown by findElement(By.xpath: //*
[@name='login'])
org.openqa.selenium.NoSuchWindowException: Currently focused window has been
closed.
发生这种情况的原因有多种,但在您的情况下,它在 chrome 和 Firefox 中都运行良好。可能你的ie浏览器的缩放级别可能大于或小于100%或降级ie驱动版本和测试。
谢谢
将此用于您的自定义尺寸:
driver.manage().window().setSize(新维度(1024,768)); 您可以根据您的要求更改尺寸。