我有自己的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
)
}
我错过了什么?
答案 0 :(得分:2)
我找到了解决方案。
在Windows机器上,我必须在启动节点时添加以下参数: Dwebdriver.edge.driver =“C:/selenium/MicrosoftWebDriver.exe”-browser browserName =“MicrosoftEdge”,platform = WIN10
答案 1 :(得分:0)
彼得
Error forwarding the new session cannot find : Capabilities [{platform=WIN10, browserName=MicrosoftEdge, version=}]
是网格告诉你它没有找到任何名为" MicrosoftEdge"的浏览器的节点的方式。将其平台设置为" WIN10"。
你需要回过头来看看你是如何产生节点的,看看是否需要稍微调整一下。
要全面了解如何设置网格,您可以查看我的this博客文章。