http://code.google.com/p/selenium/wiki/Grid2
i run selenium hub with
java -jar ..\DLL\Selenium\selenium-server-2.1.0\selenium-server-standalone-2.1.0.jar -role hub
but then i do not know how to run 3 selenium browsers.
i try like
DesiredCapabilities capability = DesiredCapabilities.Firefox();
capability.SetCapability(CapabilityType.Platform, "WINDOWS");
capability.SetCapability(CapabilityType.BrowserName, "firefox");
capability.SetCapability(CapabilityType.Version, "5.0");
IWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), capability);
ISelenium selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://localhost/");
selenium.Start();
but on driver object i get this error: cannot find : {platform=WINDOWS, browserName=firefox, version=5.0}
there is so bad docs on this how to run 3 selenium browser in paralell.
Thx