extentreports-java
extentreports-java copied to clipboard
Community version of Extent API for Java has moved to https://github.com/extent-framework/
## Summary How to assign Sub-Category to Extent Report ## Expected Behavior ## Current Behavior ## Sample ```java // Sample code goes here ``` ## Environment Details * Extent report...
## Expected Behavior Display somewhere in the reports by default overall pass rate!!!! Passed tests out of total tests represented as a percentage. ## Current Behavior I have been using...
## Expected Behavior Properly give the option to search by the available status's (In my case Pass/Fail) ## Current Behavior When viewing the reports, sometimes the fail status sort option...
The color of skip in the diagram is blue and in the report orange:  It would be easier to read the report, if the same color is used.
public class ExtentReport { public static ExtentHtmlReporter htmlReporter; public static ExtentReports extent; public static ExtentTest deviceNameInReport; public static ExtentTest testCase; Logger logger = LoggerFactory.getLogger(ExtentReport.class); public void startReport() { logger.info("\t\tInitializing Extent...
I would like to use ExtentReports in my Framework with Parent-Child combination. Each Class is Parent and each Test in the class should be append as child test in Extent...
Apart from given status in enum class Status. I got few more status say "FAIL_WITH_CONDITION" and "PASS_WITH_CONDITION". I would like to know, how to add the new status to report....
[ScenarioNo_12_Legs.zip](https://github.com/anshooarora/extentreports-java/files/1897405/ScenarioNo_12_Legs.zip) ## Summary Extent report is not able to recognize steps in a Cucumber feature files that are marked with * as a general keyword instead of usual Given/When/Then. I...
## Summary Hi Anshoo, For our project, we are using cucumber-spring framework. I am able to execute the project and all the scripts are executed successfully but no extent report...
I am trying to run a Test method multiple times parallely using the testng @Dataprovider(parallel=true), and getting logging issue with that . Below is the code am referring to ##...