What would and wouldn’t you automate using Cypress? And why?
2 Likes
Basically Cypress interacts directly with the browser, avoiding the need for a WebDriver (like in Selenium). So using Cypress, I:
Would: Test my website and webapp extensively for cross browser testing
(Because Cypress can interact with the UI in the browser directly)
Wouldn’t - API testing
(Because there is no UI involved in API)
1 Like