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