0

I am new to WebdriverIO. I want to know how to set 'AutomationExtension' as false in wdio.conf.js file in webdriverio.

Arun Sivaraj
  • 93
  • 1
  • 8

1 Answers1

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