Summary
In this chapter, we learned how Cypress performs navigation, how requests are created, and how Cypress interprets and returns them for our test execution process. We took a hands-on approach to learning about the three fundamental Cypress navigation commands and also the three commands that Cypress uses for making and interpreting requests. The exercises provided a channel for you to get out of your comfort zone and do some research on advanced uses of Cypress and how we can integrate logic and the knowledge we have garnered in this book to write meaningful tests that add value to the applications being tested. Finally, we looked at the advanced configuration options of the cy.visit()
command. I am confident that in this chapter, you learned the skills of handling and implementing navigation and network requests in tests and also configuring navigation requests.
Now that we have practically explored navigation and requests in Cypress using a hands-on approach, we will use...