protractor-console
v3.0.0
Published
Print console logging statements that occur during Protractor test runs.
Downloads
6,603
Readme
protractor-console
Display log statements from the browser that occur while Protractor tests are running. Similar to the "Console Plugin" that comes with Protractor, but with some significant differences:
- Associates logs with individual tests, printing them after each test run. "Console Plugin" only prints logs after all tests have run, making it more difficult to understand when they occured. For this to be truly beneficial, it should be used in conjunction with a more sophisticated test reporter like https://github.com/bcaudan/jasmine-spec-reporter.
- Allows filtering all log levels.
Installation
npm install --save-dev protractor-console
Usage
This module is implemented as a Protractor plugin. Add it in the Protractor config like so:
exports.config = {
plugins: [{
package: 'protractor-console',
logLevels: ['severe']
}],
Configuration
logLevels
: InclusiveArray
filter for which log levels to show. Can be any of'debug'
,'info'
,'warning'
and'severe'
. Defaults to['severe', 'warning']
.