Asserting Network Calls from Cypress Tests
The Cypress Test Runner can "see" everything happening inside the web application under test: DOM elements, cookies, local storage items, location, etc. The Test Runner can also spy on and stub network requests the application is making to its backend API or even to the 3rd party APIs. This blog post shows how easy it is to confirm the network calls from the web app as expected.
What Are Network Calls?
Network Calls, in the context of web applications, refer to the interactions between the ap
Read more