https://cypress.io logo
Hey, I keep getting ```Cypress detected a cross or...
# e2e-testing
q
Hey, I keep getting
Copy code
Cypress detected a cross origin error happened on page load:

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

Before the page load, you were bound to the origin policy:

> http://localhost:5002

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

A new URL does not match the origin policy if the 'protocol', 'port' (if specified), and/or 'host' (unless of the same superdomain) are different.

Cypress does not allow you to navigate to a different origin URL 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 in Chromium-based browsers which will turn off this restriction by setting { chromeWebSecurity: false } in cypress.config.js.Learn more
even thos I deactivated chromeWebSecurity