protractor-console

Print console logging statements that occur during Protractor test runs.

Usage no npm install needed!

<script type="module">
  import protractorConsole from 'https://cdn.skypack.dev/protractor-console';
</script>

README

protractor-console build status

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.

image

  • 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: Inclusive Array filter for which log levels to show. Can be any of 'debug', 'info', 'warning' and 'severe'. Defaults to ['severe', 'warning'].