
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
s4-protractor-html-screenshot-reporter
Advanced tools
Protractor test results in HTML format with screen captures and teamcity output.
Protractor test results in HTML format with screen captures.
Will work with multi-capabilities and spec file sharding.
##BETA BETA BETA BETA
Needs more tests, more use in different configurations.
npm install s4-protractor-html-screenshot-reporter
Place the following in your Protractor configuration file
var HTMLScreenshotReporter = require('s4-protractor-html-screenshot-reporter');
Create an instance of the reporter passing (optional) configuration parameters
var htmlReporter = new HTMLScreenshotReporter({
title : 'My Protractor End to End Test Report',
targetPath : 'target',
screenshotsFolder : 'screenshots-folder',
fileName : 'protractor-e2e-report.html'
});
Place the following in your Protractor configuration file
exports.config = {
framework : 'jasmine2',
//You MUST define the resultJsonOutputFile configuration so it can be post processed
resultJsonOutputFile : 'my-protractor-e2e-results.json',
...
//Place an onPrepare function similar to:
onPrepare : function () {
// Assign the test reporters to each running instance
jasmine.getEnv().addReporter(htmlReporter);
//Provide browser with capability information so that all specs can access it
return browser.getProcessedConfig().then(function (config) {
return browser.getCapabilities().then(function (cap) {
browser.version = cap.get('version');
browser.browserName = cap.get('browserName');
browser.baseUrl = config.baseUrl;
});
});
},
//Place an afterLaunch function similar to:
afterLaunch : function (exitCode) {
return new Promise(function (resolve) {
htmlReporter.generateHtmlReport(exports.config.resultJsonOutputFile);
});
}
}
If you want to build and test this project you will be able to by:
npm install
npm test
FAQs
Protractor test results in HTML format with screen captures and teamcity output.
We found that s4-protractor-html-screenshot-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
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.