We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: create any test and assign author
Expected: Authors category should be displayed in left section
Actual: Authors category is not displaying in left section
Verified in below versions 4.0.9 : its working 4.1.9 : its not working
++++++++++++++++++++++++++++++++ Used below code for 4.0.9 version
String resultFileName = System.getProperty("user.dir") + "/reports/" + System.currentTimeMillis() + ".html"; ExtentHtmlReporter reporter = new ExtentHtmlReporter(resultFileName); ExtentReports extent = new ExtentReports(); extent.attachReporter(reporter); System.out.println("resultFileName: " + resultFileName); extent.setSystemInfo("OS", "windows"); spark.config().setDocumentTitle("Automation"); ExtentTest test = extent.createTest("MyFirstTest"); test.assignAuthor("ravi"); test.pass("fist step details"); extent.flush();
+++++++++++++++++++++++++++++ Used below code for 4.1.6 version
String resultFileName = System.getProperty("user.dir") + "/reports/" + System.currentTimeMillis() + ".html"; ExtentSparkReporter spark = new ExtentSparkReporter(resultFileName); ExtentReports extent = new ExtentReports(); extent.attachReporter(spark); System.out.println("resultFileName: " + resultFileName); extent.setSystemInfo("OS", "windows"); spark.config().setDocumentTitle("Automation"); ExtentTest test = extent.createTest("MyFirstTest"); test.assignAuthor("ravi"); test.pass("fist step details"); extent.flush();
++++++++++++++
The text was updated successfully, but these errors were encountered:
This has been addressed in #152 and will be part of 5.0.0 release.
Sorry, something went wrong.
No branches or pull requests
Description: create any test and assign author
Expected:
Authors category should be displayed in left section
Actual:
Authors category is not displaying in left section
Verified in below versions
4.0.9 : its working
4.1.9 : its not working
++++++++++++++++++++++++++++++++ Used below code for 4.0.9 version
+++++++++++++++++++++++++++++ Used below code for 4.1.6 version
++++++++++++++


The text was updated successfully, but these errors were encountered: