如何在 webdriverio 的 wdio.conf.js 文件中将'AutomationExtension'设置为 false?



我是WebdriverIO的新手。我想知道如何在webdriverio中的wdio.conf.js文件中将"AutomationExtension"设置为false。

您可以在Chrome的配置文件中按如下方式进行操作。

{
'maxInstances': 1,
'browserName': 'chrome',
'goog:chromeOptions': {
w3c: true,
args: ['--headless'],
useAutomationExtension: false,
},
},

相关内容

  • 没有找到相关文章

最新更新