javascript – WebDriverIO Selenium将命令行参数从config.js文件传递到Chrome中

前端之家收集整理的这篇文章主要介绍了javascript – WebDriverIO Selenium将命令行参数从config.js文件传递到Chrome中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用chrome运行disable-web-security标志来进行UI测试.如何使用wdio.config文件( http://webdriver.io/)注入任何命令.
capabilities: [{
        browserName: 'chrome'
    }]

解决方法

您可以使用chromeOptions在所需功能中设置任何chrome标记
capabilities: [{
    browserName: 'chrome',chromeOptions: {
        args: ['disable-web-security']
    }
}]

有关chromeOptions对象的更多信息,请查看the chromedriver docs.

原文链接:https://www.f2er.com/js/156224.html

猜你在找的JavaScript相关文章