Selenium Standalone + Chrome driver, add capabilities from command line

958 Views Asked by At

I want to run some test using selenium standalone server on Google Chrome but i need to pass some ChromeOptions to the chrome driver from command line

Anybody has an idea of how can i do that?

1

There are 1 best solutions below

0
On

Selenium Core, which is what you are referring to, was released before Chrome existed. Support for Chrome was added later. What you are asking for was never supported, and with Selenium Core deprecated several years back, it will probably never be supported.

One possible workaround is to set the desired options in the Chrome profile.

Another options, although much more painful, is to move up to Selenium WebDriver.