elementor
elementor copied to clipboard
Not possible to configure Chrome binary
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
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.