Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@wdio/allure-reporter
Advanced tools
A WebdriverIO reporter plugin to create Allure Test Reports
@wdio/allure-reporter is a WebdriverIO plugin that allows you to generate Allure Test Reports. Allure is a flexible, lightweight multi-language test report tool that not only shows a very concise representation of what has been tested in a neat web report form but also allows everyone participating in the development process to extract maximum of useful information from everyday execution of tests.
Adding Labels
This feature allows you to add custom labels to your tests. Labels can be used to categorize and filter tests in the Allure report.
const { addLabel } = require('@wdio/allure-reporter').default;
addLabel('feature', 'Login');
Adding Steps
This feature allows you to add steps to your tests. Steps provide a detailed breakdown of the actions performed during the test execution.
const { addStep } = require('@wdio/allure-reporter').default;
addStep('Open login page');
Adding Attachments
This feature allows you to add attachments to your tests. Attachments can include screenshots, logs, or any other relevant files.
const { addAttachment } = require('@wdio/allure-reporter').default;
addAttachment('Screenshot', Buffer.from('...'), 'image/png');
Adding Test Case ID
This feature allows you to link your tests to external test case management systems by adding a test case ID.
const { addTestId } = require('@wdio/allure-reporter').default;
addTestId('TC-1234');
Adding Severity
This feature allows you to specify the severity of a test case, which can be useful for prioritizing test results.
const { addSeverity } = require('@wdio/allure-reporter').default;
addSeverity('critical');
Mochawesome is a custom reporter for the Mocha JavaScript test framework that generates a visually appealing HTML/CSS report. It provides similar functionalities to @wdio/allure-reporter, such as detailed test reports and the ability to include screenshots and other attachments.
jest-html-reporter is a Jest test results processor that creates a simple HTML report. While it does not offer as many customization options as @wdio/allure-reporter, it provides a straightforward way to generate test reports for Jest.
cucumber-html-reporter is a Cucumber.js reporter that generates a beautiful HTML report. It is similar to @wdio/allure-reporter in that it provides detailed test reports, but it is specifically designed for use with Cucumber.js.
A WebdriverIO reporter plugin to create Allure Test Reports.
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
Configure the output directory in your wdio.conf.js file:
export const config = {
// ...
reporters: [['allure', {
outputDir: 'allure-results',
disableWebdriverStepsReporting: true,
disableWebdriverScreenshotsReporting: true,
}]],
// ...
}
outputDir
defaults to ./allure-results
. After a test run is complete, you will find that this directory has been populated with an .xml
file for each spec, plus a number of .txt
and .png
files and other attachments.disableWebdriverStepsReporting
- optional parameter(false
by default), in order to log only custom steps to the reporter.issueLinkTemplate
- optional parameter, in order to specify the issue link pattern. Reporter will replace {}
placeholder with value specified in addIssue(value)
call parameter. The same logic is applied if Cucumber is used and tag issue
is set at any level, it will be converted to the link in the report. The parameter value example:
https://example.org/issue/{}
tmsLinkTemplate
- optional parameter, in order to specify TMS (Test Management System) link pattern. Reporter will replace {}
placeholder with value specified in addTestId(value)
call parameter. The same logic is applied if Cucumber is used and tag testId
is set at any level, it will be converted to the link in the report. The parameter value example:
https://example.org/tms/{}
disableWebdriverScreenshotsReporting
- optional parameter(false
by default), in order to not attach screenshots to the reporter.useCucumberStepReporter
- optional parameter (false
by default), set it to true in order to change the report hierarchy when using cucumber. Try it for yourself and see how it looks.disableMochaHooks
- optional parameter (false
by default), set it to true in order to not fetch the before/after
stacktrace/screenshot/result hooks into the Allure Reporter.addConsoleLogs
- optional parameter(false
by default), set to true in order to attach console logs from step to the reporter.reportedEnvironmentVars
(type: Record<string, string>
) - Set this option to display the environment variables in the report. Note that setting this, does not modify the actual environment variables.addLabel(name, value)
- assign a custom label to testaddFeature(featureName)
– assign features to testaddStory(storyName)
– assign user story to testaddSeverity(value)
– assign severity to test, accepts one of these values: blocker, critical, normal, minor, trivialaddTag(value)
– assign a tag label to testaddEpic(value)
– assign an epic label to testaddOwner(value)
– assign an owner label to testaddSuite(value)
– assign a suite label to testaddSubSuite(value)
– assign a sub suite label to testaddParentSuite(value)
– assign a parent suite label to testaddIssue(value)
– assign issue id to testaddAllureId(value)
– assign allure test ops id label to testaddTestId(value)
– assign TMS test id to testaddEnvironment(name, value)
~~ – a deprecated function that no longer works. Use reportedEnvironmentVars
insteadaddAttachment(name, content, [type])
– save attachment to test.
name
(String) - attachment name.content
– attachment content.type
(String, optional) – attachment MIME-type, text/plain
by defaultaddArgument(name, value)
- add an 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"step(name, body)
- starts step with content function inside. Allows to create steps with infinite hierarchy
body
(Function) - the step body async functionAllure Api can be accessed using:
CJS
const allureReporter = require('@wdio/allure-reporter').default
ESM
import allureReporter from '@wdio/allure-reporter'
Mocha example
describe('Suite', () => {
it('Case', () => {
allureReporter.addFeature('Feature')
})
})
Basic Cucumber example:
Given('I include feature and story name', () => {
allureReporter.addFeature('Feature_name');
allureReporter.addStory('Story_name');
})
step
method simplifies dealing with steps because each step present as an async function with any content inside.
The first argument of the function is the current step, that has most of the allure API methods (such as label
, epic
, attach
etc):
allureReporter.step('my step name', async (s1) => {
s1.label('foo', 'bar')
await s1.step('my child step name', async (s2) => {
// you can add any combination of steps in the body function
})
})
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
The results can be consumed by any of the reporting tools offered by Allure. For example:
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.
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:
// wdio.conf.js
const allure = require('allure-commandline')
export const 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()
})
})
}
// ...
}
Install and configure the Allure Jenkins plugin
Screenshots can be attached to the report by using the takeScreenshot
function from WebDriverIO in the afterTest
hook for Mocha and Jasmine or afterStep
hook for Cucumber.
First set disableWebdriverScreenshotsReporting: false
in reporter options, then add in afterStep hook:
afterTest: async function(test, context, { error, result, duration, passed, retries }) {
if (error) {
await browser.takeScreenshot();
}
}
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.
v9.4.4 (2024-12-19)
wdio-testingbot-service
eslint-plugin-wdio
, wdio-allure-reporter
, wdio-appium-service
, wdio-browser-runner
, wdio-browserstack-service
, wdio-cli
, wdio-config
, wdio-cucumber-framework
, wdio-firefox-profile-service
, wdio-globals
, wdio-jasmine-framework
, wdio-json-reporter
, wdio-junit-reporter
, wdio-lighthouse-service
, wdio-local-runner
, wdio-logger
, wdio-mocha-framework
, wdio-protocols
, wdio-repl
, wdio-reporter
, wdio-runner
, wdio-sauce-service
, wdio-shared-store-service
, wdio-smoke-test-cjs-service
, wdio-smoke-test-service
, wdio-spec-reporter
, wdio-static-server-service
, wdio-sumologic-reporter
, wdio-testingbot-service
, wdio-types
, wdio-utils
, wdio-webdriver-mock-service
, webdriver
, webdriverio
FAQs
A WebdriverIO reporter plugin to create Allure Test Reports
We found that @wdio/allure-reporter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.