├── .babelrc ├── .gitignore ├── LICENSE ├── Readme.md ├── circle.yml ├── config ├── config.js └── multiConfig.js ├── features ├── allure.feature ├── cucumber.feature ├── database.feature └── protractor.feature ├── images ├── allureReport.png ├── allureReportGraph.png ├── cucumberReport.png └── cucumberReporter.PNG ├── package.json ├── pages └── GoogleSearch.js ├── stepDefinitions ├── clearPage.js ├── connDatabase.js ├── homePage.js └── search.js ├── support ├── ElementHelper.js ├── Globals.js ├── database.js ├── hooks.js └── reporter.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { "presets" : ["es2015"] } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/Readme.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/circle.yml -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/config/config.js -------------------------------------------------------------------------------- /config/multiConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/config/multiConfig.js -------------------------------------------------------------------------------- /features/allure.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/features/allure.feature -------------------------------------------------------------------------------- /features/cucumber.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/features/cucumber.feature -------------------------------------------------------------------------------- /features/database.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/features/database.feature -------------------------------------------------------------------------------- /features/protractor.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/features/protractor.feature -------------------------------------------------------------------------------- /images/allureReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/images/allureReport.png -------------------------------------------------------------------------------- /images/allureReportGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/images/allureReportGraph.png -------------------------------------------------------------------------------- /images/cucumberReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/images/cucumberReport.png -------------------------------------------------------------------------------- /images/cucumberReporter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/images/cucumberReporter.PNG -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/package.json -------------------------------------------------------------------------------- /pages/GoogleSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/pages/GoogleSearch.js -------------------------------------------------------------------------------- /stepDefinitions/clearPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/stepDefinitions/clearPage.js -------------------------------------------------------------------------------- /stepDefinitions/connDatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/stepDefinitions/connDatabase.js -------------------------------------------------------------------------------- /stepDefinitions/homePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/stepDefinitions/homePage.js -------------------------------------------------------------------------------- /stepDefinitions/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/stepDefinitions/search.js -------------------------------------------------------------------------------- /support/ElementHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/support/ElementHelper.js -------------------------------------------------------------------------------- /support/Globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/support/Globals.js -------------------------------------------------------------------------------- /support/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/support/database.js -------------------------------------------------------------------------------- /support/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/support/hooks.js -------------------------------------------------------------------------------- /support/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/support/reporter.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteram/protractor-cucumber-allure/HEAD/yarn.lock --------------------------------------------------------------------------------