WDIO Allure Reporter
A WebdriverIO reporter plugin to create Allure Test Reports.
Installation
The easiest way is to include @wdio/allure-reporter
as a devDependency in your package.json
.
{
"devDependencies": {
"@wdio/allure-reporter": "^7.0.0"
}
}
You can simply do it by:
npm install @wdio/allure-reporter --save-dev
Configuration
Configure the output directory in your wdio.conf.js file:
exports.config = {
reporters: [['allure', {
outputDir: 'allure-results',
disableWebdriverStepsReporting: true,
disableWebdriverScreenshotsReporting: true,
}]],
}
Supported Allure API
addLabel(name, value)
- assign a custom label to testaddFeature(featureName)
– assign feature to testaddStory(storyName)
– assign user story to testaddSeverity(value)
– assign severity to test, accepts one of these values: blocker, critical, normal, minor, trivialaddIssue(value)
– assign issue id to testaddTestId(value)
– assign TMS test id to testaddEnvironment(name, value)
– save environment valueaddAttachment(name, content, [type])
– save attachment to test.
name
(String) - attachment name.content
– attachment content.type
(String, optional) – attachment MIME-type, text/plain
by default
addArgument(name, value)
- add additional argument to testaddDescription(description, [type])
– add description to test.
description
(String) - description of the test.type
(String, optional) – description type, text
by default. Values ['text', 'html','markdown']
addStep(title, [{content, name = 'attachment'}], [status])
- add step to test.
title
(String) - name of the step.content
(String, optional) - step attachmentname
(String, optional) - step attachment name, attachment
by default.status
(String, optional) - step status, passed
by default. Must be "failed", "passed" or "broken"
startStep(title)
- start with a step
title
(String) - name of the step.
endStep(status)
- end with a step
status
(String, optional) - step status, passed
by default. Must be "failed", "passed" or "broken"
Usage
Allure Api can be accessed using:
ES5
const allureReporter = require('@wdio/allure-reporter').default
ES6
import allureReporter from '@wdio/allure-reporter'
Mocha example
describe('Suite', () => {
it('Case', () => {
allureReporter.addFeature('Feature')
})
})
Cucumber
Basic Cucumber example:
Given('I include feature and story name', () => {
allureReporter.addFeature('Feature_name');
allureReporter.addStory('Story_name');
})
Cucumber Tags
Cucumber tags with special names (issue
and testId
) are converted to the links (the corresponding link templates must be configured before):
@issue=BUG-1
@testId=TST-2
Feature: This is a feature with global tags that will be converted to Allure links
@issue=BUG-3
@testId=TST-4
Scenario: This is a scenario with tags that will be converted to Allure links
Given I do something
Cucumber tags with special names (feature
) are mapped to Allure labels:
Feature: Test user role
@feature=login
Scenario: Login
Given I test login
Displaying the report
The results can be consumed by any of the reporting tools offered by Allure. For example:
Command-line
Install the Allure command-line tool, and process the results directory:
allure generate [allure_output_dir] && allure open
This will generate a report (by default in ./allure-report
), and open it in your browser.
Autogenerate Report
You can also auto generate the report by using the Allure command line tool programmatically. To do so install the package in your project by:
npm i allure-commandline
Then add or extend your onComplete
hook or create a custom service for this:
const allure = require('allure-commandline')
exports.config = {
onComplete: function() {
const reportError = new Error('Could not generate Allure report')
const generation = allure(['generate', 'allure-results', '--clean'])
return new Promise((resolve, reject) => {
const generationTimeout = setTimeout(
() => reject(reportError),
5000)
generation.on('exit', function(exitCode) {
clearTimeout(generationTimeout)
if (exitCode !== 0) {
return reject(reportError)
}
console.log('Allure report successfully generated')
resolve()
})
})
}
}
Jenkins
Install and configure the Allure Jenkins plugin
Add Screenshots
Screenshots can be attached to the report by using the takeScreenshot
function from WebDriverIO in the afterStep
hook.
First set disableWebdriverScreenshotsReporting: false
in reporter options, then add in afterStep hook:
afterStep: async function (step, scenario, { error, duration, passed }, context) {
if (error) {
await browser.takeScreenshot();
}
}
As shown in the example above, when this function is called, a screenshot image will be attached to the allure report.