在Jenkins中运行Cypress测试时出现跨源错误

时间:2019-02-20 21:32:53

标签: jenkins automated-tests cross-domain subdomain cypress

我在本地运行Cypress,并且它们总是通过,但是当我在jenkins中运行它们时,我不断收到此错误:


  > Blocked a frame with origin "http://localhost:3000" from accessing a cross-origin frame.

Before the page load, you were bound to the origin policy:
  > http://localhost:3000

A cross origin error happens when your application navigates to a new superdomain which does not match the origin policy above.

This typically happens in one of three ways:

1. You clicked an <a> that routed you outside of your application
2. You submitted a form and your server redirected you outside of your application
3. You used a javascript redirect to a page outside of your application

Cypress does not allow you to change superdomains within a single test.

You may need to restructure some of your test code to avoid this problem.

Alternatively you can also disable Chrome Web Security which will turn off this restriction by setting { chromeWebSecurity: false } in your 'cypress.json' file.

https://on.cypress.io/cross-origin-violation

有时其中一个通过 我试图将chromeWebSecurity: false添加到我的cypress.json中 但登录测试后,我的网址中出现了“数据:” (我正在注销不执行重定向的api调用)

1 个答案:

答案 0 :(得分:0)

最有可能有一些JavaScript正在调用df2[(df2['pace']>50) & (df2['dribbling']>50)].count() 或其他某种形式的重定向。当您的应用window.top.location消失进入柏树顶级框架时,我们称之为framebusting。赛普拉斯试图通过iframe剥离此framebusting代码,但是代码可能会漏掉。

您应该:

  • 找到并禁用/删除regex JavaScript
  • 在此处向柏树小组提交更多细节的问题

这与您的问题类似:https://github.com/cypress-io/cypress/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+framebust