Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@rpii/wdio-html-reporter
Advanced tools
A reporter for webdriver.io which generates a HTML report. This project is a fork of wdio-html-format-reporter That project has not been updated and doesnt work with the latest webdriverio.
This project does. A pull request was submitted to that project, but it appears to be inactive. Due to name conflict issues, this package had to be put in my user namespace. it is now in npm.
The easiest way is to keep the @rpii/wdio-html-reporter
as a devDependency in your package.json:
{
"devDependencies": {
"@rpii/wdio-html-reporter": "~0.8.0"
}
}
Or, you can simply do it with:
yarn add @rpii/wdio-html-reporter --dev
The following code shows the default wdio test runner configuration. Just add an HtmlReporter object as another reporter to the reporters array. Syntax shown requires babel:
// wdio.conf.js
import { ReportAggregator, HtmlReporter} from '@rpii/wdio-html-reporter' ;
module.exports = {
reporters: ['spec',
[HtmlReporter, {
debug: true,
outputDir: './reports/html-reports/',
filename: 'report.html',
reportTitle: 'Test Report Title',
//to show the report in a browser when done
showInBrowser: true,
//to turn on screenshots after every test
useOnAfterCommandForScreenshot: false,
// to use the template override option, can point to your own file in the test project:
// templateFilename: path.resolve(__dirname, '../src/wdio-html-reporter-alt-template.hbs'),
// to add custom template functions for your custom template:
// templateFuncs: {
// addOne: (v) => {
// return v+1;
// },
// },
//to initialize the logger
LOG: log4j.getLogger("default")
}
]
]
};
webdriver.io will call the reporter for each test suite. It does not aggregate the reports. To do this, add the following event handlers to your wdio.config.js
onPrepare: function (config, capabilities) {
let reportAggregator = new ReportAggregator({
outputDir: './reports/html-reports/',
filename: 'master-report.html',
reportTitle: 'Master Report',
// to use the template override option, can point to your own file in the test project:
// templateFilename: path.resolve(__dirname, '../src/wdio-html-reporter-alt-template.hbs')
});
reportAggregator.clean() ;
global.reportAggregator = reportAggregator;
},
onComplete: function(exitCode, config, capabilities, results) {
(async () => {
await global.reportAggregator.createReport( {
config: config,
capabilities: capabilities,
results : results
});
})();
},
A new feature for developers is to add a log4js logger to see detailed debug output. See the test/reporter.spec.js for configuration options
Uncomment the templateFilename above, and in the ReportAggregator. You must provide an absolute path to the file you can modify the alt-template above if you wish The template must support all the constructs in the default template. YOu may add more or just change the formatting and css.
Add the function below to your test code and call it when you want to output a message
logMessage(message) {
process.emit('test:log', message);
}
Add a function that you can call from anywhere in your test:
takeScreenshot(message) {
const timestamp = moment().format('YYYYMMDD-HHmmss.SSS');
fs.ensureDirSync('reports/html-reports/screenshots/');
const filepath = path.join('reports/html-reports/screenshots/', timestamp + '.png');
this.browser.saveScreenshot(filepath);
this.logMessage(message) ;
process.emit('test:screenshot', filepath);
return this;
}
wdio.conf.js
afterTest: function (test) {
const path = require('path');
const moment = require('moment');
// if test passed, ignore, else take and save screenshot.
if (test.passed) {
return;
}
const timestamp = moment().format('YYYYMMDD-HHmmss.SSS');
const filepath = path.join('reports/html-reports/screenshots/', timestamp + '.png');
browser.saveScreenshot(filepath);
process.emit('test:screenshot', filepath);
},
Set the option useOnAfterCommandForScreenshot to true
This option is used if you are not using either of the screenshot options above.
FAQs
WebdriverIO report plugin. Create an HTML formatted report. compatible with webdriverio version 7
The npm package @rpii/wdio-html-reporter receives a total of 9,637 weekly downloads. As such, @rpii/wdio-html-reporter popularity was classified as popular.
We found that @rpii/wdio-html-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.