Cypress run commands in Terminal | Cypress Automation crash course - 5 | Coders Camp

Опубликовано: 14 Март 2026
на канале: Coders Camp
664
8

This video series helps to learn web automation using cypress. In this video we have covered the basic run commands that can be used to custom execute the tests in cmd prompt or in visual studio code's Terminal.

MyBlog: https://coderscamp.wixsite.com/codeit...
Cypress docs: https://docs.cypress.io/guides/guides...

The command we have covered in this video are,
1. The first command we gonna use in to open the Cypress Test Runner: npx cypress open
2. To run all the tests in integration folder: npx cypress run
3. To run specific test under integration folder: npx cypress run --spec "path of your test"
4. To run the test with browser from terminal: npx cypress run --spec "/path/test.js" --headed
5. To run the test headless: npx cypress run --spec "/path/test.js" --headless
6. To run the test in specified browser: npx cypress run --spec "/path/test.js" --browser "chrome"
7. To learn all run commands / Help: npx cypress run --help
8. To have the information of browsers installed: npx cypress info
9. To verify whether cypress installed correctly or not: npx cypress verify
10. To know the version of cypress: npx cypress version

#coderscamp​​​ #cypressautomation​​​ #cypressautomationcrashcourse​​​ #webautomation