Overview: JMeter it is a powerful tool for performance tenting witch is used in a lot of project and in the end of result we can happens that generated report are not clear for us of for our team, for this case we have wrote this post to help you. Sample Aggregate Report: Label:…
Tag: Test Report
Generate pretty test execution report
In this post we will show how to generate a pretty report after cucumber test execution. Using technology: Maven Java 8 Cucumber 1.2.5 First of all you need to add following library in your pom.xml file: <dependency> <groupId>net.masterthought</groupId> <artifactId>cucumber-reporting</artifactId> <version>3.19.0</version> </dependency> <dependency> <groupId>com.github.mkolisnyk</groupId> <artifactId>cucumber-report-generator</artifactId> <version>1.3.4</version> </dependency> After that you will need to do some changes in…