├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── data └── userData.json ├── docker-compose.yml ├── features ├── google.feature ├── reports │ └── index.html └── step_definitions │ └── steps.js ├── img ├── cucumber_console_log.jpg └── cucumber_html_report.jpg ├── nightwatch.conf.js ├── package.json ├── tests ├── customCommands │ ├── logger.js │ ├── scrollToClick.js │ └── scrollToSelector.js ├── globals.js ├── nightwatch.conf.js ├── pageObjects │ └── .gitkeep ├── screenshoots │ └── .gitkeep └── src │ └── examples │ ├── password.js │ └── searchTest.js └── timeout.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /data/userData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/data/userData.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /features/google.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/features/google.feature -------------------------------------------------------------------------------- /features/reports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/features/reports/index.html -------------------------------------------------------------------------------- /features/step_definitions/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/features/step_definitions/steps.js -------------------------------------------------------------------------------- /img/cucumber_console_log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/img/cucumber_console_log.jpg -------------------------------------------------------------------------------- /img/cucumber_html_report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/img/cucumber_html_report.jpg -------------------------------------------------------------------------------- /nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/nightwatch.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /tests/customCommands/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/customCommands/logger.js -------------------------------------------------------------------------------- /tests/customCommands/scrollToClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/customCommands/scrollToClick.js -------------------------------------------------------------------------------- /tests/customCommands/scrollToSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/customCommands/scrollToSelector.js -------------------------------------------------------------------------------- /tests/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/globals.js -------------------------------------------------------------------------------- /tests/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/nightwatch.conf.js -------------------------------------------------------------------------------- /tests/pageObjects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/screenshoots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/examples/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/src/examples/password.js -------------------------------------------------------------------------------- /tests/src/examples/searchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/tests/src/examples/searchTest.js -------------------------------------------------------------------------------- /timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Christine-Pinto/nightwatch-boilerplate/HEAD/timeout.js --------------------------------------------------------------------------------