You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
I am currently running multiple cucumber runner classes via testng.run() option using multi threading.
Runner1.class:
```
@CucumberOptions(features={"src//test//java//features"},
glue = {"stepdefinition"},
tags = {"@Login,"},
plugin = { "com.cucumber.listener.ExtentCucumberFormatter:target/cucumber-reports/Reports1.html"},
monochrome = true)
Now I want separate reports for each runner class as mentioned Report1.html and Report2.html.
But what is happening right now is, Runner2.class results gets appends to Report1.html itself. There is not separate report.
I suspect this is due to static variables in ExtentCucumberFormatter.java and other listeners.
Kindly help me to get separate reports.
The text was updated successfully, but these errors were encountered: