This is a slightly tweaked and enchanted Cypress Framework special built for Bliss Applications (www.blissapplications.com)
Our Framework is well organized extending PageObject Model using PageFactory Model in order to enhanced Test Run Performance (so it's recommended to follow our template concept)
Cypress Bliss Framework is also able to automatically generates reports (if enable), with a feature where they can be integrated on a MongoDB.
Current version v2.2.5
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 and also GIT version control.
- Download the latest Node available version (LTS is preferred) : download here
- Download the latest Git available version : download 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.
npx cypress open
Cypress give us the ability to run tests with a test runner interface that allow us to debug and develop tests much more quickly.
NOTE: That for report generation, in order to do not have command conflicts use Git Bash prompt, then run the following command:
npx cypress run
Our Framework reports can be seen on test-results/index.html via your preferred browser to have a user-friendly view.
NOTE: That in order to do not have command conflicts use Git Bash prompt, then use the following command to open it directly:
start cypress/test-results/index.html