webdriverio-community / wdio-html-reporter

Fork of wdio-html-format-reporter
MIT License
18 stars 27 forks source link

Detailed overview report #35

Closed sisirrana closed 4 years ago

sisirrana commented 4 years ago

I am able to use the reporter to generate the HTML report for my tests. I am looking for a detailed overview report which gives a kind of summary Features, Scenarios and Steps wise. I am trying to customize the template. But i am only able to get methods to for tests/steps.

{{metrics.passed}} {{metrics.skipped}} {{metrics.failed}}

Do we have similar methods to get "totalNofofFeaturesPassed","totalNofofFeaturesFailed","totalNofofFeaturesSkipped" and then maybe the same for scenarios

This is how my end report should look like for email notification:

reportCustom
rpii commented 4 years ago

so if you look at the wdio/reporter interface it doesnt really provide those things: https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-reporter you might ask on the webdriverio forum.

sisirrana commented 4 years ago

Thank you peter. I was able to generate the report using customreport + cucumber html reporter.