Cypress Dashboard
Explore how to set up Cypress Dashboard to record and monitor your end-to-end web application tests. Learn to log in, configure project settings, capture screenshots and videos of test runs, and analyze failures to improve testing reliability.
We'll cover the following...
There is more to Cypress than running component and end-to-end tests. Cypress
also provides a dashboard to see test results, including screenshots and videos if
they are enabled in the cypress.json configuration file. For an overview of the
capabilities and some product demos, please have a look at the Cypress Dashboard.
Generate product videos
In the End-to-end tests lesson earlier, we learned that Cypress can record videos of the test cases we develop. Needless to say, this is incredibly helpful to debug what went wrong with failed tests, but what if we could leverage these videos to generate promotional videos of new features? What about documentation videos that are always up-to-date?
Let’s say we develop a new feature that allows users to change their profile picture. We write an end-to-end test to make sure there are no regressions in this feature. The test starts on a user ...