Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hala-samir/cypresspracticing
Cypress testing framework
https://github.com/hala-samir/cypresspracticing
cypress-example cypress-io cypress-tests test-automation testing-framework testing-tools
Last synced: 5 days ago
JSON representation
Cypress testing framework
- Host: GitHub
- URL: https://github.com/hala-samir/cypresspracticing
- Owner: hala-samir
- Created: 2021-11-15T07:26:34.000Z (about 3 years ago)
- Default Branch: initial
- Last Pushed: 2021-12-09T15:56:59.000Z (about 3 years ago)
- Last Synced: 2023-03-06T13:12:28.499Z (almost 2 years ago)
- Topics: cypress-example, cypress-io, cypress-tests, test-automation, testing-framework, testing-tools
- Language: JavaScript
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What is Cypress?
#### Cypress is a next generation front end testing tool built for the modern web. We address the key pain points developers and QA engineers face when testing modern applications.
# How to install Cypress?
>npm install
npm install cypress --save-dev
#### To run specific spec file headless:
> npx cypress run --spec cypress/integration/Examples/SpecFileName.js
#### To run BDD tests using tags and in a headed browser:
> npx cypress-tags run -e TAGS="@tagName" --headed --browser browserName
#### To run tests with mochawesome reports:
> npx cypress run --spec filePath --reporter mochawesome
# How can use Cypress with Cucumber?
By following this link https://www.npmjs.com/package/cypress-cucumber-preprocessor, you can install and use Cucumber with Cypress. And for its reports reader use this https://github.com/wswebcreation/multiple-cucumber-html-reporter.
# What are the Test types provided by Cypress?
#### End-to-end
#### Component
#### API
##### For more inforamtion visit: https://docs.cypress.io/