Introduction to Allure reports
Allure is a powerful reporting framework that presents concise and well-organized reports. You can access this report template by installing the @wdio/allure-reporter
and allure-commandline
packages:
> yarn add @wdio/allure-reporter
Allure exports reports in a standardized format called Allure results format. To generate comprehensive reports, you can utilize the Allure framework through the command-line interface:
"node_modules/.bin/allure generate --clean ./reports/allure-results && allure open -p 5050"
The Allure Framework is a versatile and lightweight test reporting tool supporting multiple programming languages. It provides a succinct presentation of test results in HTML format, empowering all stakeholders in the development process to extract valuable insights from routine test executions:
// Code example using expect-webdriverio export async function expectAdv(actual, assertionType, expected) { const...