我是WebdriverIO的新手。我想知道如何在webdriverio中的wdio.conf.js文件中将"AutomationExtension"设置为false。
您可以在Chrome的配置文件中按如下方式进行操作。
{
'maxInstances': 1,
'browserName': 'chrome',
'goog:chromeOptions': {
w3c: true,
args: ['--headless'],
useAutomationExtension: false,
},
},