protractor-tartare

Tartare framework plugin for Protractor


Keywords
testing, QA, acceptance, BDD, gherkin, DDT, framework, tartare, protractor, angular, selenium, webdriver, webdriverjs
License
Apache-2.0
Install
npm install protractor-tartare@1.0.1

Documentation

Protractor Tartare Framework

The Tartare family: tartare | tartare-chai | tartare-mock | tartare-util | tartare-collections | tartare-logs


This framework allows you to use Protractor along with Tartare, so you can code tests for your AngularJS application using the BDD/Gherkin syntax provided by Tartare.

Install

This plugin is available as an NPM module.

$ npm install protractor-tartare

Usage

To use the Tartare framework in Protractor, configure it as a Protractor custom framework:

exports.config = {
  framework: 'custom',
  frameworkPath: require.resolve('protractor-tartare'),
  tartareOpts: {
    reporter: 'gherkin',
    timeout: 15000
  }
};

You can use any Tartare option as described in the Tartare documentation.

For more details about using the Tartare framework with Protractor, go here.

For general information about writing tests with Tartare read the full documentation.