protractor-jasmine2-screenshot-report
v0.1.2
Published
Use the screenshot reporter to capture screenshots after each executed Protractor test case.
Downloads
7
Maintainers
Readme
Protractor screenshot reporter for Jasmine2
Reporter for Protractor that will capture a screenshot after each executed test case and store the results in a HTML report. (supports jasmine2)
Usage
The protractor-jasmine2-screenshot-reporter is available via npm:
$ npm install protractor-jasmine2-screenshot-reporter --save-dev
In your Protractor configuration file, register protractor-jasmine2-screenshot-reporter in jasmine:
Options
Destination directory
Output directory for created files. All screenshots and reports will be stored here.
If the directory doesn't exist, it will be created automatically or otherwise cleaned before running the test suite.
Filename (optional)
Filename for html report.
Default is report.html
Ignore pending specs (optional)
When this option is enabled, reporter will not create screenshots for pending / disabled specs. Only executed specs will be captured.
Default is false
Capture only failed specs (optional)
When this option is enabled, reporter will create screenshots only for specs that have failed their expectations.
Default is false
Path Builder (optional)
Function used to build custom paths for screenshots. For example:
By default, the path builder will generate a random ID for each spec.
Metadata Builder (optional)
Function used to build custom metadata objects for each spec. Files (json) will use the same filename and path as created by Path Builder. For example:
By default, the runner builder will not save any metadata except the actual html report.