Selenium RemoteWebdriver Edge 不起作用
Selenium RemoteWebdriver Edge does not work
我有自己的 selenium 网格和不同的 windows 机器。其中之一是 Windows 10 台机器。 Chrome 和 Firefox 可以工作,但我无法让 Edge 达到 运行。
我的例外情况:
geb.driver.DriverCreationException: failed to create driver from callback 'script1460298173607577952326$_run_closure3@6256ac4f'
at geb.driver.CallbackDriverFactory.getDriver(CallbackDriverFactory.groovy:35)
at geb.driver.CachingDriverFactory.getDriver_closure3(CachingDriverFactory.groovy:85)
at geb.driver.CachingDriverFactory.getDriver_closure3(CachingDriverFactory.groovy)
at geb.driver.CachingDriverFactory$SimpleCache.get(CachingDriverFactory.groovy:32)
at geb.driver.CachingDriverFactory.getDriver(CachingDriverFactory.groovy:84)
at geb.Configuration.createDriver(Configuration.groovy:382)
at geb.Configuration.getDriver(Configuration.groovy:371)
at geb.Browser.getDriver(Browser.groovy:108)
at geb.spock.GebSpec.propertyMissing(GebSpec.groovy:60)
at specs.LomnidoBaseSpec.setupSpec(LomnidoBaseSpec.groovy:28)
Caused by: org.openqa.selenium.WebDriverException: Error forwarding the new session cannot find : Capabilities [{platform=WIN10, browserName=MicrosoftEdge, version=}]
Command duration or timeout: 382 milliseconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
System info: host: 'peter-laptop', ip: '127.0.1.1', os.name: 'Linux', os.arch: 'amd64', os.version: '3.13.0-85-generic', java.version: '1.8.0_45'
我已经在 windows 机器上安装了 Microsoft WebDriver。
我的代码在gebconfig.groovy
driver = {
DesiredCapabilities capabilities = DesiredCapabilities.edge()
capabilities.setPlatform(Platform.WIN10)
new RemoteWebDriver(
new URL("http://localhost:4444/wd/hub"), capabilities
)
}
我错过了什么?
彼得
Error forwarding the new session cannot find : Capabilities [{platform=WIN10, browserName=MicrosoftEdge, version=}]
是 Grid 告诉您它没有找到任何具有名为 "MicrosoftEdge" 的浏览器且其平台设置为 "WIN10".
的节点的方式
您需要回头再看一下您是如何生成节点的,看看是否需要稍微调整一下。
要大致了解如何设置网格,您可以查看我的 this 博客 post。
我找到了解决方案。
在 windows 机器上,我必须在节点启动时添加以下参数:
Dwebdriver.edge.driver="C:/selenium/MicrosoftWebDriver.exe" -浏览器 browserName="MicrosoftEdge",platform=WIN10
我有自己的 selenium 网格和不同的 windows 机器。其中之一是 Windows 10 台机器。 Chrome 和 Firefox 可以工作,但我无法让 Edge 达到 运行。
我的例外情况:
geb.driver.DriverCreationException: failed to create driver from callback 'script1460298173607577952326$_run_closure3@6256ac4f'
at geb.driver.CallbackDriverFactory.getDriver(CallbackDriverFactory.groovy:35)
at geb.driver.CachingDriverFactory.getDriver_closure3(CachingDriverFactory.groovy:85)
at geb.driver.CachingDriverFactory.getDriver_closure3(CachingDriverFactory.groovy)
at geb.driver.CachingDriverFactory$SimpleCache.get(CachingDriverFactory.groovy:32)
at geb.driver.CachingDriverFactory.getDriver(CachingDriverFactory.groovy:84)
at geb.Configuration.createDriver(Configuration.groovy:382)
at geb.Configuration.getDriver(Configuration.groovy:371)
at geb.Browser.getDriver(Browser.groovy:108)
at geb.spock.GebSpec.propertyMissing(GebSpec.groovy:60)
at specs.LomnidoBaseSpec.setupSpec(LomnidoBaseSpec.groovy:28)
Caused by: org.openqa.selenium.WebDriverException: Error forwarding the new session cannot find : Capabilities [{platform=WIN10, browserName=MicrosoftEdge, version=}]
Command duration or timeout: 382 milliseconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
System info: host: 'peter-laptop', ip: '127.0.1.1', os.name: 'Linux', os.arch: 'amd64', os.version: '3.13.0-85-generic', java.version: '1.8.0_45'
我已经在 windows 机器上安装了 Microsoft WebDriver。
我的代码在gebconfig.groovy
driver = {
DesiredCapabilities capabilities = DesiredCapabilities.edge()
capabilities.setPlatform(Platform.WIN10)
new RemoteWebDriver(
new URL("http://localhost:4444/wd/hub"), capabilities
)
}
我错过了什么?
彼得
Error forwarding the new session cannot find : Capabilities [{platform=WIN10, browserName=MicrosoftEdge, version=}]
是 Grid 告诉您它没有找到任何具有名为 "MicrosoftEdge" 的浏览器且其平台设置为 "WIN10".
的节点的方式您需要回头再看一下您是如何生成节点的,看看是否需要稍微调整一下。
要大致了解如何设置网格,您可以查看我的 this 博客 post。
我找到了解决方案。
在 windows 机器上,我必须在节点启动时添加以下参数: Dwebdriver.edge.driver="C:/selenium/MicrosoftWebDriver.exe" -浏览器 browserName="MicrosoftEdge",platform=WIN10