Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ravifel/cypress-bdd-cucumber
Web Cypress Automation with Cucumber (BDD)
https://github.com/ravifel/cypress-bdd-cucumber
bdd cypress javascript test-automation
Last synced: about 1 month ago
JSON representation
Web Cypress Automation with Cucumber (BDD)
- Host: GitHub
- URL: https://github.com/ravifel/cypress-bdd-cucumber
- Owner: ravifel
- Created: 2024-04-02T23:49:31.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-16T21:54:05.000Z (10 months ago)
- Last Synced: 2024-04-17T01:25:06.700Z (10 months ago)
- Topics: bdd, cypress, javascript, test-automation
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
npm init -y
npm install cypress
npx cypress install --force
npx cypress open
--> select to "E2E Testing"INSTALA CUCUMBER
Doc: https://github.com/badeball/cypress-cucumber-preprocessornpm install @badeball/cypress-cucumber-preprocessor
Configure specPattern with "**/*.feature" and setupNodeEvents with a bundler, using EG. cypress.config.js
include configurations in cypress.config.js
CREATE STRUCTURE BDD (CUCUMBER)
create folder 'e2e'
create folder 'features' inside of 'e2e'CREATE 2 FOLDER IN 'support'
create folder 'pages'
create folder 'step_definitions' (steps)