0.0.3 • Published 5 years ago

protractor-screenshot-plugin v0.0.3

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

Screenshot Plugin

npm npm npm npm

This plugin takes a screenshot after the test failed. It can also be configured to take a screenshot after each test executed.

exports.config = {
  plugins: [{
    package: 'protractor-screenshot-plugin',

    // Screenshots will be saved in this folder
    folder: 'screenshots',           {Default - 'screenshots'}

    // take a screenshot after each test executed
    takeOnAllCases: {Boolean}        {Default - false}
 }]
};