├── .gitignore ├── LICENSE ├── README.md ├── features ├── home.feature ├── hooks.js ├── selectors │ ├── home.js │ └── index.js ├── step_definitions │ └── page_steps.js ├── support │ ├── actions.js │ ├── constants │ │ └── index.js │ ├── helpers │ │ ├── device.js │ │ ├── getElemHandle.js │ │ ├── index.js │ │ ├── locale.js │ │ ├── location.js │ │ └── url.js │ └── scope.js └── utils │ ├── compose.js │ └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | scripts 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/README.md -------------------------------------------------------------------------------- /features/home.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/home.feature -------------------------------------------------------------------------------- /features/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/hooks.js -------------------------------------------------------------------------------- /features/selectors/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/selectors/home.js -------------------------------------------------------------------------------- /features/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/selectors/index.js -------------------------------------------------------------------------------- /features/step_definitions/page_steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/step_definitions/page_steps.js -------------------------------------------------------------------------------- /features/support/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/actions.js -------------------------------------------------------------------------------- /features/support/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/constants/index.js -------------------------------------------------------------------------------- /features/support/helpers/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/device.js -------------------------------------------------------------------------------- /features/support/helpers/getElemHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/getElemHandle.js -------------------------------------------------------------------------------- /features/support/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/index.js -------------------------------------------------------------------------------- /features/support/helpers/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/locale.js -------------------------------------------------------------------------------- /features/support/helpers/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/location.js -------------------------------------------------------------------------------- /features/support/helpers/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/support/helpers/url.js -------------------------------------------------------------------------------- /features/support/scope.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /features/utils/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/utils/compose.js -------------------------------------------------------------------------------- /features/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/features/utils/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlampedx/cucumber-puppeteer-example/HEAD/package.json --------------------------------------------------------------------------------