如何在 chrome/Mac 上取消忽略某些证书
How to cancel ignore-certain-certificate on chrome/Mac
我正在使用 intern.js 和 selenium-grid 来测试我的应用程序网络,当我在节点机器 (MAC) Chrome 中 运行 测试时,我得到此错误:
You are using an unsupported command-line flag --ignore-certificate-errors stability and security will be affected
尝试在实习生配置的环境描述符中设置 test-type
选项:
// intern.js
// ...
environments: [
{ browserName: 'chrome', chromeOptions: { args: [ 'test-type' ] } }
]
// ...
我正在使用 intern.js 和 selenium-grid 来测试我的应用程序网络,当我在节点机器 (MAC) Chrome 中 运行 测试时,我得到此错误:
You are using an unsupported command-line flag --ignore-certificate-errors stability and security will be affected
尝试在实习生配置的环境描述符中设置 test-type
选项:
// intern.js
// ...
environments: [
{ browserName: 'chrome', chromeOptions: { args: [ 'test-type' ] } }
]
// ...