WebDriver ignores platform features

When I create an instance of Selenium RemoteWebDriver, for example

DesiredCapabilities cap = new DesiredCapabilities("firefox", "13", Platform.VISTA); RemoteWebDriver driver = new RemoteWebDriver(cap); 

and explore the possibilities inside, I see platform = XP .

The whole problem is also described here.

This is mistake?

+4
source share
2 answers

Error description found here . We are waiting for the correction.

0
source

Today I ran into this problem. If you experience this the same way that people are in a related error , this is actually just a problem with the default node setting. You can set the node configuration manually using the json file, as described here in the "Configuring JSON Nodes" section.

If on each of your nodes you have a unique json file with entries such as:

 { "platform": "VISTA", "browserName": "internet explorer", "maxInstances": 1, "seleniumProtocol": "WebDriver" } 

replacing VISTA with the desired platform name, node will respond only to these requests, and remote WebDrivers will be created accordingly!

+2
source

All Articles