Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am setting up Selenium Grid 2 (selenium-server-standalone-2.1.0) on Windows 7 (I have also tried Windows Server 2008) both 64 bit. I test the WebDriver locally and all is well.

I launch the hub with:

java -jar selenium-server-standalone-2.1.0.jar -role hub

Adding a webDriver node for FireFox works, but anything else such as Google Chrome throws an IllegalOperation Exception.

For example:

I try adding a node for Chrome:

java -jar selenium-server-standalone-2.1.0.jar -role webDriver -hub http://127.0.0.1:4444 -browser browserName=chrome platform=windows version=12 -port 5556

This shows as a node on the hub when you go to http://localhost:4444/grid/console

I add code to call the webDriver such as:

            DesiredCapabilities capability = new DesiredCapabilities();
            capability.SetCapability(CapabilityType.Platform, "windows");
            capability.SetCapability(CapabilityType.Version, "12");
            capability.SetCapability(CapabilityType.BrowserName, "chrome");

            IWebDriver driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"), capability);

I get an exception almost immediately:

{"cannot find : {platform=windows, browserName=chrome, version=12}"}

It seems as if the node isn't even being found. I am new to this is it something I have missed in the set up? (internet explorer does the same and changing versions doesn't seem to help).

I have searched for hours and hours but nothing that matches the exception seems as generic as my problem.

share|improve this question
Please include the config output as the grid sees it. You can get this by clicking the "View Config" link in the Web console. The following link should also have the data: 127.0.0.1:4444/grid/console?config=true&configDebug=true – nirvdrum Jul 30 '11 at 21:01
1  
Thanks I have figured it out. I can see in the config the lines throwOnCapabilityNotPresent : true capabilityMatcher : org.openqa.grid.internal.utils.DefaultCapabilityMatcher, the error is thrown because there is no matching capability. Cheers for pointing me in the right direction. – idsweb Jul 31 '11 at 9:44

3 Answers

The IllegalOperation Exception {"cannot find : {platform=windows, browserName... is caused by there being no matching capability (it never gets as far as a Node).

If I use a config file when I launch the node that explicitly states the platform and browser such as:

{
"capabilities":
        [
                {
                        "browserName":"firefox",
                        "maxInstances":1
                },
                {
                        "browserName":"chrome",
            "platform":"WINDOWS",
                        "maxInstances":1
                },
                {
                        "browserName":"internet explorer",
                        "version":"9",
                        "platform":"WINDOWS",
                        "maxInstances":1
                }
        ],
"configuration":
        {
                "cleanUpCycle":2000,
                "timeout":30000,
                "proxy":"org.openqa.grid.selenium.proxy.WebDriverRemoteProxy",
                "maxSession":5,
                "url":"http://[myIP]/wd/hub",

        }
}

and launch the hub with this line:
java -jar selenium-server-standalone-2.2.0.jar -role webdriver -nodeConfig myconfig.json -hub http://[myIP]:4444/grid/register

and create the capabilities like so:

DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability(CapabilityType.Platform, "WINDOWS");
capability.SetCapability(CapabilityType.BrowserName, "internet explorer");

Then the test works (you have to set all Zones in IE to protected by the way).
N.B. I did notice that windows is UPPERCASE as in WINDOWS or you get an error.

share|improve this answer
can you give an example. I get error when running hub with your command – senzacionale Aug 1 '11 at 17:50

The docs do actually document this but in an unclear way.

java -jar selenium-server-standalone-2.1.0.jar -role webDriver -hub http://127.0.0.1:4444 -browser browserName=chrome platform=windows version=12 -port 5556

Needs to be:

java -Dwebdriver.chrome.driver="C:\Users\Mike\Documents\Java Libraries\Selenium\chromedriver\chromedriver.exe" -jar selenium-server-standalone-2.1.0.jar -role webDriver -hub http://127.0.0.1:4444/grid/register -browser "browserName=chrome,platform=WINDOWS,version=12" -port 5556

You are missing grid/register from the hub URL. On top of this, if you are passing multiple arguments to -browser they need to be enclosed in quotes and separated by commas without spaces. You also need to pass in the webdriver.chrome.driver property in a similar way to how I did it.

You can check that it has successfully registered by going to your browser and hitting:

http://localhost:4444/grid/console

And as a sidenote, this is another way you could declare the desired capabilities:

DesiredCapabilities dc = DesiredCapabilities.chrome();
dc.setVersion("12");
dc.setPlatform(Platform.WINDOWS);
share|improve this answer
can the path map to Chrome.exe, or does it have to be the ChromeDriver? – Tyler Feb 25 at 13:31
1  
@Tyler: It must be to ChromeDriver – Mike Kwan Feb 25 at 14:22

Try to lower the conditions about the chrome version and the operating system:

Your code to register the node would be the following

java -jar selenium-server-standalone-2.1.0.jar -role webDriver -hub http://127.0.0.1:4444 -browser browserName=chrome -port 5556

And to create your browser:

DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability(CapabilityType.BrowserName, "chrome");

or

DesiredCapabilities capability = DesiredCapabilities.chrome();

It can be that your Chrome updated without you noticing or that the version number "12" is not perfectly fitting to your installed version. If it runs under these conditions, try to add the "Platform=WINDOWS" and the "Version" CapabilityTypes with new combinations.

share|improve this answer
This only obscures what he's done wrong. You've missed out on the main reasons why his command for instantiating the node is incorrect and your command will also not work. – Mike Kwan Sep 6 '11 at 12:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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