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.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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/regisgter -browser browserName="internet explorer",platform=WINDOWS ensureCleanSession=true
link|improve this answer
thx again. It works :) – senzacionale Aug 7 '11 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.