如何绕过混合内容错误(http / https)

时间:2018-10-01 15:25:04

标签: javascript angularjs protractor automated-tests cucumberjs

尝试批准网页中的文档时出现以下错误

Mixed Content: The page at \'https://example.com\' was loaded over HTTPS, but requested an insecure resource \'http://insecure-page.com:9870/xyz\'. This request has been blocked; the content must be served over HTTPS.'

这是因为我的测试试图在安全页面上加载非安全页面。有人可以帮助绕过此错误,以便我可以继续执行自动化测试脚本中的其余步骤。我正在使用Protractor-cucumber-javascript框架

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,并且尝试了这种方法

<iframe [src]="your-https-original-domain?URL=your-http-url" width="100%" height="600"></iframe>

希望这会有所帮助。

引用:https://www.brokenbrowser.com/loading-insecure-content-in-secure-pages/