extentreports-java icon indicating copy to clipboard operation
extentreports-java copied to clipboard

Extent Reporting Library, Java

Results 141 extentreports-java issues
Sort by recently updated
recently updated
newest added

Suppose I have this junit test case,and using 'com.aventstack:extentreports:5.0.9' ```java import java.time.LocalDate; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import com.aventstack.extentreports.ExtentReports; import com.aventstack.extentreports.reporter.ExtentSparkReporter; public class BaseTest { static ExtentReports extent; @BeforeAll...

Dear team, I would like to combine the current run html results with the previous run file. I tried the options given in the docs as ExtentSparkReporter spark = new...

version:5.0.2 report type: ExtentSparkReporter

@anshooarora I am exploring an option to find a way to either include log4j logs into existing extent report or add custom logs from the test into existing report. My...

Hi I am getting exception while flusing the extent report(Version using 4.0.9 ExtentSparkerReporter) freemakre.template.TemplateNotFoundException:template not found for name "spark/test/ftl" This was interpreted by this TemplateLoader: [freemarker.cache.ClassTemplateLoader.toString() failed: java.lang.NoClassDefFoundError: freemarker/cache/TemplateLoaderUtils] Can...

How to merge to spark reports or append to existing report in v5? Thanks in advance

is it possible to remove the timestamp inside the parent ? cause my real time that i want to enter is the one that you see in Details ![ccc](https://user-images.githubusercontent.com/42347278/135854833-cfa203a6-077f-4811-9821-ae052cb4a1a6.jpg)

Current implementation: ![image](https://user-images.githubusercontent.com/48186367/134579001-fdbfa52c-c131-4727-8244-348c62275000.png) Desired version: ![image](https://user-images.githubusercontent.com/48186367/134579041-e510d17f-f1d1-424a-8e1c-8ce5de349f97.png) below is my TestNGRunner class: @CucumberOptions(features = "src/main/resources/features", glue = {"stepDefinitions"}, //tags = {"~@Ignore"}, //plugin = {"com.cucumber.listener.ExtentCucumberFormatter:"}, plugin = {"pretty","json:target/cucumber-reports/CucumberTestReport.json", "com.aventstack.extentreports.cucumber.adapter.ExtentCucumberAdapter:"},monochrome = true) public...