Required software installed:
- Node.js
- VIsual Studio Code
How to run tests:
- Navigate to the
cypress-template
folder via the Command Prompt. - Run
npm install
to install dependencies required by the project. These dependencies are declared in yourpackage.json
file. This command will create anode_modules
folder. - Run
npx cypress run
- (this will execute all tests without opening a web browser), ornpx cypress open
- this will open the Cypress Explorer where you can select specific tests or run them all. You will be able to see your tests run in the browser here.