heathkit / protractor-cucumber-framework

Cucumber framework plugin for Protractor v3.x

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Protractor Cucumber Framework

Build Status

This framework was originally part of angular/protractor and is now a separate module to decouple cucumber.js.

Install

npm install --save-dev protractor-cucumber-framework

Implementation

To implement this framework, utilize the protractor custom framework config option:

exports.config = {
  // set to "custom" instead of cucumber.
  framework: 'custom',

  // path relative to the current config file
  frameworkPath: require.resolve('protractor-cucumber-framework'),
  
  // require feature files
  specs: [
		'path/to/feature/files/**/*.feature' // accepts a glob
	],
  cucumberOpts: {
	  // require step definitions
    require: [
    	'path/to/step/definitions/**/*.steps.js' // accepts a glob
    ]
  }
};

Contributing

Pull requests are welcome. Commits should have an appropriate message and be squashed.

For Contributors

Clone the github repository:

git clone https://github.com/mattfritz/protractor-cucumber-framework
cd protractor-cucumber-framework
npm install

Start up a selenium server. By default, the tests expect the selenium server to be running at http://localhost:4444/wd/hub. A selenium server can be started with webdriver-manager.

node_modules/.bin/webdriver-manager update --standalone
node_modules/.bin/webdriver-manager start

The test suite runs against the included test application. Start that up with

npm start

Then run the tests with

npm test

About

Cucumber framework plugin for Protractor v3.x

License:MIT License


Languages

Language:JavaScript 80.4%Language:HTML 16.1%Language:Gherkin 3.5%