Suggested IDEs by Cypress documentation:
- VsCode
- Intellij
- Cypress website.
- The API documentation is available here.
You will need to install the Node.js to execute the project. Download the latest Node available version here.
Before run cypress you must install all dependencies. You can to it directly by clicking on "Run Specs" Button.:
npm install yarn --force npm install --legacy-peer-deps yarn install --legacy-peer-deps
With this command, Cypress interface will be opened and you can select the browser and the exact file that you want to run. In addition, you are able to select to run all files directly clicking on "Run All Specs" Button.
Cypress give us the ability to run tests with a test runner interface that allow us to debug and develop tests much more quickly To do this, just run the following command:
npx cypress open
With this command, Cypress interface will be opened and you can select the browser and the exact file that you want to run. In addition, you are able to select to run all files directly clicking on "Run All Specs" Button.