Gathering detailed insights and metrics for cucumber-html-report-generator
Gathering detailed insights and metrics for cucumber-html-report-generator
Gathering detailed insights and metrics for cucumber-html-report-generator
Gathering detailed insights and metrics for cucumber-html-report-generator
npm install cucumber-html-report-generator
Typescript
Module System
Node Version
NPM Version
JavaScript (50.71%)
TypeScript (39.79%)
CSS (6.87%)
Gherkin (2.61%)
Shell (0.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
149 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jan 08, 2022
Latest Version
1.0.33
Package Id
cucumber-html-report-generator@1.0.33
Unpacked Size
13.01 MB
Size
7.34 MB
File Count
370
NPM Version
8.19.1
Node Version
16.16.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
17
64
This project is based in the project https://www.npmjs.com/package/multiple-cucumber-html-reporter As with the original project html-cucumber-report-generator is a reporting module for Cucumber to parse the JSON output to a beautiful report. The differences between the previous project and this one are the following ones:
A sample with dark theme and report metadata can be found here and a sample with light theme and report metadata can be found here
And a sample with dark theme without report metadata can be found here and a sample with light theme without report metadata can be found here
Install this module locally with the following command:
1npm install cucumber-html-report-generator
Save to dependencies or dev-dependencies:
1npm install cucumber-html-report-generator --save 2npm install cucumber-html-report-generator --save-dev
Multiple Cucumber HTML Reporter has been tested with the latest version of webdriverio 7.10 and it should work with the latest versions of cucumber.. To use with webdriverwio there is a reporter: wdio-cucumber-html-reporter
IMPORTANT:
Make sure that, when you generate the JSON files with Cucumber, each file will have a UNIQUE name. If you don't provide a unique name Cucumber will override the JSON files.
Advice is to use for example the name of the feature, the name of the browser / device it is running on AND a unix timestamp with for example this
(new Date).getTime();
. This will result in something like thisname_of_feature.chrome.1495298685509.json
webdriverio-cucumber-typescript
showExecutionTime?: boolean;
openReportInBrowser?: boolean;
navigateToFeatureIfThereIsOnlyOne?: boolean;
theme?: string;
customStyle?: string;
overrideStyle?: string;
reportPath?: string;
disableLog?: boolean;
useCDN?: boolean;
reportTitle?: string;
jsonDir: string;
reportMetadataTitle?: string;
reportMetadata?: Metadata[];
featuresFolder?: string;
saveReportInMongoDb?: boolean;
saveCollectedJSON?: boolean;
saveEnrichedJSON?: boolean;
mongooseServerUrl?:string;
showExecutionTime
Boolean
If true it will show the execution time in the features summary page and in the feature details
openReportInBrowser
Boolean
If true it will make that the generated report is opened in the default browser
navigateToFeatureIfThereIsOnlyOne
Boolean
This option is used in conjunction with the previous one. In case the generated report only has one feature, the report opens directly in the feature detail.
theme
String
With this option it is possible to select the theme of the report, by default, if the property si not included it is selected the dark theme. You can select the light theme with the 'Light' value
customStyle
String
With this option it is possible to pass a custom style css to the report. This style will be copied at the end of the current style.
Add it like this customStyle: 'your-path-where/custom.css'
overrideStyle
path
If you need replace default style for your report. Add it like this overrideStyle: 'your-path-where/custom.css'
reportPath
String
Using this option is possible to indicate the path where the report is going to be created. When no value is provided then the report will be created in the folder cucumber-html-report-generator/YYYY-MM-DD_HH-mm-ss
disableLog
Boolean
This will disable the log so will NOT see this.
1===================================================================================== 2 Cucumber HTML Report Generator report generated in: 3 4 /Users/wswebcreation/multiple-cucumber-html-reporter/.tmp/index.html 5========================================================================
useCDN
Boolean
With a true value the html resources are obtained from a cdn and with a false value they are obtained from a subfolder in the report location.
reportTitle
String
It is the features page title and it has the default value "Cucumber HTML Report Generator"
jsonDir
String
It is the folder where the cucumber execution result json files are located
reportMetadataTitle
string
It displays a custom title in the report. If this parameter is not provided the value "Additional Data" and there is a valid value in the parameter reportMetadata different than null
reportMetadata
Metadata[]
It is the metadata that is going to be included in the report. The metadata has to be provided as an object with the properties: - name - value - icon (optional)
The icon value can be obtained from the following page: https://fontawesome.com/v5.15/icons?d=gallery&p=2&m=free
metadata: [
{ name: 'project', value: 'custom project'},
{ name: 'release', value: '1.2.3' },
{ name: 'Cycle', value: '2' }
{ name: 'Execution Start Date', value: '2021-03-26 14:01' },
{ name: 'Execution End Date', value: '2021-03-26 16:05' }
]
To be able to see this you will need to add the following to the Cucumber JSON before you save it.
1// This represents the Cucumber JSON file that has be retrieved 2const cucumberJSON; 3 4const metadata = { 5 "browser": { 6 "name": "chrome", 7 "version": "58" 8 }, 9 "device": "string", 10 "platform": { 11 "name": "osx", 12 "version": "10.12" 13 } 14} 15 16// Add it with for example 17cucumberJSON[0].metadata = metadata; 18 19// Now save the file to the disk
featuresFolder
String
It is the folder with the feature files
saveReportInMongoDb
Boolean
With this parameter it is decided if the report is going to be saved in the mongoDb database specified with the parameter mongooseServerUrl. The default value is false.
saveCollectedJSON
boolean
This module will first merge all the JSON-files to 1 file and then enrich it with data that is used for the report. If saveCollectedJSON :true
the merged JSON will be saved in the reportPath
. They will be saved as:
merged-output.json
saveEnrichedJSON
Type: Boolean
Mandatory: No
enriched-output.json
It allows to save the json report of the joined cucumber json reports with the specifications to generate the html report in the report folder. They will be saved as:
mongooseServerUrl
String
It defines the url of the mongodb server. if no value is provided the value http://localhost:3000. It depends on the project x
It could be that the name of the Cucumber JSON file that has been saved is not unique (enough).
My advice is to use for example:
(new Date).getTime();
This will result in something like this name_of_feature.chrome.1495298685509.json
.
The advantage of this is that when you look at the folder where the Cucumber JSON-files are saved you can see:
You can attach screenshots at any time to a Cucumber JSON file. Just create a Cucumber scenario
-hook that will handle this. You can add them during running or when a scenario
failed.
Check the framework you are using to attach screenshots to the JSON file.
You can attach plain-text / data at any time to a Cucumber JSON file to help debug / review the results. You can add them during running or when a scenario
failed.
Check the framework you are using to attach plain text to the JSON file.
You can attach JSON at any time to a Cucumber JSON file. You can add them during running or when a scenario
failed.
Check the framework you are using to attach JSON data to the JSON file.
The Changelog and releases can be found here
How to contribute can be found here
In the search for a reporting tools for Cucumber I found a few tools that helped me a lot:
No vulnerabilities found.
No security vulnerabilities found.