I am facing issue with driver installation when i use selenium standalone for chrome, ie , edge ones. I do that with codecept config.
The below error happens for all driver installation not just for selenium server one.
exports.config = {
tests: '././*_test.ts',
//output: './output',
timeout: 10000,
helpers: {
WebDriver: {
url: 'https://localhost:9000/checkmydata',
browser: 'chrome',
smartWait: 5000,
windowSize: '1920x1680',
desiredCapabilities: {
chromeOptions: {
useAutomationExtension: false,
// args: [
// '--headless',
// '--disable-gpu',
// '--disable-web-security',
// '--window-size=1200,1000',
// '--no-sandbox'
// ]
}
}
}
},
plugins: {
wdio: {
enabled: true,
services: ['selenium-standalone'],
seleniumInstallArgs: {
//Used by selenium-standalone to download dependencies
drivers: {
chrome: {},
ie: {},
edge: {},
firefox: {}
},
ignoreExtraDrivers: true,
proxy: 'http://mycompanyproxyhost:port',
}
}
},
include: {
I: './steps_file.js'
},
bootstrap: null,
//mocha: { },
name: 'e2e'
}
Hi,
I am facing issue with driver installation when i use selenium standalone for chrome, ie , edge ones. I do that with codecept config.
The below error happens for all driver installation not just for selenium server one.
Error i face:
Config as in codecept.conf.js:
Questions: