Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jagadeeshshetty/nightwatchjs-cucumber
https://github.com/jagadeeshshetty/nightwatchjs-cucumber
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jagadeeshshetty/nightwatchjs-cucumber
- Owner: jagadeeshshetty
- Created: 2019-06-06T01:07:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T05:20:47.000Z (about 2 years ago)
- Last Synced: 2023-03-03T10:52:33.475Z (almost 2 years ago)
- Language: HTML
- Size: 458 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NightwatchJS with Cucumber
## Run
```bash
npm run e2e-testnpm run e2e-test -- features/feature1.feature
npm run e2e-test -- features/feature1.feature features/feature2.feature
npm run e2e-test -- features/**/*.feature
npm run e2e-test -- features/
npm run e2e-test -- features/feature2.feature:12
npm run e2e-test -- --name "Searching Google Two Two"
Scenario run through tag
npm run e2e-test -- --tags @scenario2_2Feature run through tag
npm run e2e-test -- --tags @feature2npm run e2e-test -- --tags "@feature1 or @feature2"
npm run e2e-test -- --tags "(@feature1 or @feature2) and @scenario2_2"
npm run e2e-test -- --tags "not @feature1"
npm run e2e-test -- --tags "not(@scenario2_2 or @scenario2_1)"
```## Reference
[Using with Cucumber](https://nightwatch-api.netlify.com/cucumber/)