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

Tags/Categories duplicated on created child nodes (v5)

Open jrod567 opened this issue 1 year ago • 0 comments

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: image

In v4, this behavior did not exist. Is this by design in v5 or a bug?

jrod567 avatar Jul 03 '24 14:07 jrod567