A WebdriverIO plugin to report in step-by-step style.
The easiest way is to keep wdio-spec-reporter
as a devDependency in your package.json
.
{
"devDependencies": {
"step-by-step-reporter": "https://github.com/shkaper/wdio-spec-reporter.git#master"
}
}
Instructions on how to install WebdriverIO
can be found here.
To use this reporter, require it in your wdio.conf.js and add to reporters
array:
// wdio.conf.js
const StepByStepReporter = require('step-by-step-reporter')
module.exports = {
// ...
reporters: [StepByStepReporter],
// ...
};
For more information on WebdriverIO see the homepage.