我正在使用intern.js和selenium-grid来测试我的应用程序网站,当我在节点机器(MAC)上运行Chrome测试时,我收到了这个错误:
You are using an unsupported command-line flag --ignore-certificate-errors stability and security will be affected
答案 0 :(得分:0)
尝试在实习生配置中的环境描述符中设置test-type
选项:
// intern.js
// ...
environments: [
{ browserName: 'chrome', chromeOptions: { args: [ 'test-type' ] } }
]
// ...