elementor icon indicating copy to clipboard operation
elementor copied to clipboard

Not possible to configure Chrome binary

Open titonobre opened this issue 8 years ago • 1 comments

When Chrome is not installed in the default location, chrome-webdriver needs to receive the path to chrome binary.

In my Protractor conf.js I have

  capabilities: {
    browserName: 'chrome',
    "chromeOptions": {
      binary: "Z:/Programs/GoogleChromePortable/App/Chrome-bin/chrome.exe",
      args: [],
      extensions: [],
    }
  }

For Elementor I had to cheat %USERPROFILE%\AppData\Roaming\npm\node_modules\elementor\lib\protractor.conf.js with

  capabilities: {
    browserName: 'chrome',
    chromeOptions: {
      binary: "Z:/Programs/GoogleChromePortable/App/Chrome-bin/chrome.exe",
      args: [
        $CHROME_OPTIONS
      ]
    }
  }

Is there any chance to add a new command line option to set this? Thanks

titonobre avatar Aug 23 '16 15:08 titonobre

Would love to have this feature to customize. I also want to be able to use Firefox but I think its not going to happen soon anyway.

sushruth avatar Jan 23 '17 16:01 sushruth