使用 selenium grid2 运行 Chrome 或 IE

发布于 2024-11-28 06:04:45 字数 705 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

記柔刀 2024-12-05 06:04:45

要使用 Grid 2.0-Webdriver 组合在 googlechrome 上运行测试,您必须使用 ChromeDriver。在计算机中复制/安装 chrome 驱动程序后,您需要使用参数 webdriver.chrome.driver 启动 RC 节点

java -jar selenium-server.jar -role wd -hub http://localhost:4444/grid/register  -Dwebdriver.chrome.driver=path-to-chromedriver

对于 IE,您需要像这样启动节点

java -jar selenium-server.jar -role wd -hub http://localhost:4444/grid/register -browser browserName="internet explorer",platform=WINDOWS ensureCleanSession=true

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

java -jar selenium-server.jar -role wd -hub http://localhost:4444/grid/register  -Dwebdriver.chrome.driver=path-to-chromedriver

For IE you need to start the node like

java -jar selenium-server.jar -role wd -hub http://localhost:4444/grid/register -browser browserName="internet explorer",platform=WINDOWS ensureCleanSession=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文