Cypress runs in the browser

Cypress's architecture, unlike most other testing tools, runs inside of the browser. This means that your tests are being executed in the same environment as your application. This allows Cypress to detect all events that are fired by your browser and give it real native access to everything within your tests.

Most other testing tools (like Selenium) run outside of the browser and execute remote commands across the network to control the browser. Cypress is the exact opposite!

Since Cypress is running in the browser, it also has the ability to read and alter web traffic on the fly. Cypress can therefore modify everything coming in and out of the browser. This also gives it native access to things like the window object, document, DOM elements, service workers, etc.

This distinction can aid in many ways, including setting up or modifying frontend state libraries such as Redux or MobX directly from your Cypress tests.

Anything the browser can access, Cypress can as well.

This is not without trade-offs, however.


Unlock the next lesson

If it runs in the browser, Cypress has access to it?