使用 selenium grid2 运行 Chrome 或 IE
DesiredCapabilities capability = DesiredCapabilities.Chrome();
IWebDriver wd = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), capability);
wd.Navigate().GoToUrl("http://localhost/");
但我总是收到错误
找不到:{platform=WINDOWS, javascriptEnabled=true, 浏览器名称=chrome,版本=}
与 IE 相同。只有FF有效。我在谷歌和论坛中搜索,但没有解决方案有效。
http://code.google.com/p/selenium/wiki/GettingStarted
http://code.google.com/p/selenium/wiki/ChromeDriver
我使用的是Windows 7 64 位。
DesiredCapabilities capability = DesiredCapabilities.Chrome();
IWebDriver wd = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), capability);
wd.Navigate().GoToUrl("http://localhost/");
but I always get error
cannot find : {platform=WINDOWS, javascriptEnabled=true,
browserName=chrome, version=}
The same with IE. Only FF works. I search in google and here in forum but none solution works.
http://code.google.com/p/selenium/wiki/GettingStarted
http://code.google.com/p/selenium/wiki/ChromeDriver
I am using windows 7 64 bit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 Grid 2.0-Webdriver 组合在 googlechrome 上运行测试,您必须使用 ChromeDriver。在计算机中复制/安装 chrome 驱动程序后,您需要使用参数 webdriver.chrome.driver 启动 RC 节点
对于 IE,您需要像这样启动节点
To run tests on googlechrome using Grid 2.0-Webdriver combination you must use ChromeDriver. After copying/installing chrome driver in your machine, you need to start RC node with parameter webdriver.chrome.driver
For IE you need to start the node like