我正在使用 nightwatch.js、selenoid 和 chrome 驱动程序。我希望浏览器转到任何 url,这不是本地的,例如browser.url('http://google.com')
。但是 chrome 驱动程序不会执行此请求,但是如果我使用 https,一切正常。我试图添加标志,但它对我不起作用。
desiredCapabilities: {
networkConnectionEnabled: true,
browserName: 'chrome',
version: 'latest',
...
acceptSslCerts: false,
acceptInsecureCerts: true,
args: ['--disable-web-security', '--allow-running-insecure-content', '--allow-external-pages', '--allow-http-background-page'],
'goog:chromeOptions': {
args: ['--disable-web-security', '--allow-running-insecure-content', '--allow-external-pages', '--allow-http-background-page'],
},
chrome: {
args: ['--disable-web-security', '--allow-running-insecure-content', '--allow-external-pages', '--allow-http-background-page'],
},
},