@coorpacademy/wdio-chromedriver-service
v2.0.0
Published
[](https://www.npmjs.com/package/@coorpacademy/wdio-chromedriver-service) [;
exports.config = {
host: '0.0.0.0',
port: 9515,
path: '/',
services: [[ChromeDriverService, {}]],
chromeDriverArgs: ['--port=9516'],
chromeDriverPath: '/usr/bin/chromedriver',
capabilities: [
{
browserName: 'chrome',
chromeOptions: {
args: ['--headless', '--disable-gpu', '--no-sandbox']
}
}
]
};Options
chromeDriverArgs
Array of arguments to pass to the ChromeDriver executable, see https://helpmanual.io/help/chromedriver.
Type: string[]
chromeDriverPath
Path of chromedriver bin. Overwrite this value to use local chromedriver install.
Type: string
