-
Bug
-
Resolution: Done
-
Major
-
None
-
drone_2.1.0.Alpha1
-
None
Unable to pass DesiredCapabilities from arquillian.xml with selenium grid
Arquillian.xml
<property name="remoteAddress">${gridhubaddress}</property> <property name="remote">true</property> <property name="chromePrintOptions">true</property> <property name="chromeArguments">-start-maximized</property> <property name="chromeExperimentalOption"> { "prefs": { "download.default_directory": "${downloadlocation}" } } </property>
Note
- Desired Capabilities were captured and worked as expected when executed without selenium grid
- Debugging with Remote WebDriver showed that it has the expected DesiredCapabilities (check screen attached) but when the browser was launched, it was launched without capabilites
- Initially my thought was
<property name="chromeExperimentalOption">
had an issue but when i added
<property name="chromeArguments">-start-maximized</property>
it did not worked as well. Without Grid both worked.