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
In v5, tags created on the originating ExtentTest are now carried down to all child nodes created.
`ExtentSparkReporter sparkReport = new ExtentSparkReporter(fullReportPath);
ExtentReports er = new ExtentReports();
er.AttachReporter(sparkReport);
er.Report.AnalysisStrategy = AnalysisStrategy.Test;
ExtentTest et = er.CreateTest("MyTest");
et.AssignCategory("MyTag1", "MyTag2");
et.CreateNode("MyNode1").CreateNode("MyNode2");
er.Flush();`
Report:
In v4, this behavior did not exist. Is this by design in v5 or a bug?
The text was updated successfully, but these errors were encountered:
In v5, tags created on the originating ExtentTest are now carried down to all child nodes created.
`ExtentSparkReporter sparkReport = new ExtentSparkReporter(fullReportPath);
ExtentReports er = new ExtentReports();
er.AttachReporter(sparkReport);
er.Report.AnalysisStrategy = AnalysisStrategy.Test;
ExtentTest et = er.CreateTest("MyTest");
et.AssignCategory("MyTag1", "MyTag2");
et.CreateNode("MyNode1").CreateNode("MyNode2");
er.Flush();`
Report:
In v4, this behavior did not exist. Is this by design in v5 or a bug?
The text was updated successfully, but these errors were encountered: