I am new to WebdriverIO. I want to know how to set 'AutomationExtension' as false in wdio.conf.js file in webdriverio.
Asked
Active
Viewed 163 times
1 Answers
2
You can do it as below in your config file for Chrome.
{
'maxInstances': 1,
'browserName': 'chrome',
'goog:chromeOptions': {
w3c: true,
args: ['--headless'],
useAutomationExtension: false,
},
},

Raju
- 2,299
- 2
- 16
- 19