Chrome external protocol dialoge2e WebdriverIO测试的第一步是后藤登录页面。但是对话框阻止了测试用例的进一步发展。我没有找到使用WebdriverIO关闭对话框或禁用对话框的方法。有人能帮忙吗?
ttvkxqim1#
尝试将其添加到wdio.conf文件
wdio.conf
"capabilities": [ { ... "goog:chromeOptions": { "args": [ "disable-infobars", "disable-popup-blocking", "disable-notifications" ] } } ]
或检查此链接:wdio github issue
lzfw57am2#
把这个添加到wdio.conf文件中。在Chrome 117中运行良好
capabilities: [{ browserName: 'chrome', 'goog:chromeOptions': { 'excludeSwitches': ['enable-automation'] } }],
2条答案
按热度按时间ttvkxqim1#
尝试将其添加到
wdio.conf
文件或检查此链接:wdio github issue
lzfw57am2#
把这个添加到wdio.conf文件中。在Chrome 117中运行良好