Protractor Chrome 无头混合内容问题

Posted

技术标签:

【中文标题】Protractor Chrome 无头混合内容问题【英文标题】:Protractor Chrome headless mixed content issue 【发布时间】:2019-06-19 15:09:27 【问题描述】:

我正在自动化 AngularJS 网站,我需要使用无头 Protractor 运行 Selenium Chrome 驱动程序。问题是我在终端中遇到了这个错误:

Mixed Content: The page at 'https://x.com' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://y.com'. This request has been blocked; the content must be served over HTTPS.

我尝试在下面的代码中使用一些 Chrome 参数,但没有成功。但是,如果我删除无头 arg,它就可以工作。

capabilities: 
  browserName: 'chrome',
  acceptInsecureCerts : true,
  acceptSslCerts : true,
  chromeOptions: 
    args: [
      '--headless',
      '--disable-gpu',

      '--remember-cert-error-decisions',

      '--ignore-certificate-errors',
      '--reduce-security-for-testing',
      '--allow-running-insecure-content',

      '--window-size=800,600'
    ]
  ,
,

【问题讨论】:

【参考方案1】:

https://github.com/angular/protractor/blob/master/docs/browser-setup.md#using-headless-chrome

capabilities: 
  browserName: 'chrome',

  chromeOptions: 
     args: [ "--headless", "--disable-gpu", "--window-size=800,600" ]
   

三个以上的参数就足够在无头模式下运行了。

尝试删除您功能中的其他参数

【讨论】:

Bharath,我想无头运行,允许混合内容。我正在无头运行,但我得到了问题中的错误 ***.com/questions/33507566/…。应该能帮到你。【参考方案2】:

我遇到了同样的问题。解决方法是在浏览器中点击网址右侧的“屏蔽”图标,然后点击“加载不安全脚本”

这是非常相关的: How to get Chrome to allow mixed content?

【讨论】:

以上是关于Protractor Chrome 无头混合内容问题的主要内容,如果未能解决你的问题,请参考以下文章

您如何将无头 Chrome 与 Selenium 一起使用?

你可以同时使用 Protractor 和 Appium 来测试混合应用程序吗?

带有无头 Chrome 的 Tkinter 在 Mac 上运行良好,但在 Ubuntu 服务器上运行不正常

protractor - 启动 chrome 以禁用 cors 的网络安全

在无头模式下运行 Chrome

无头 Chrome 是不是支持策略配置?