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
I have a project with 30 tests. I run it and report is generated. If 1 test fails, I only run that failed test again. The new generated report contains only last failed test.
I want to have all 30 tests of first report, with only failed tests replaced with last run test.
Here is the code am using
var path = System.Reflection.Assembly.GetCallingAssembly().CodeBase;
var actualPath = path.Substring(0, path.LastIndexOf("bin"));
var projectPath = new Uri(actualPath).LocalPath;
var reportPath = projectPath + "Reports\ExtentReport.html";
ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter("ExtentReport.html");
htmlReporter.AppendExisting = true;
_extent = new ExtentReports();
_extent.AttachReporter(htmlReporter);
It makes no difference either I set true or false to htmlReporter.AppendExisting .
Any help is appreciated.
The text was updated successfully, but these errors were encountered:
I have a project with 30 tests. I run it and report is generated. If 1 test fails, I only run that failed test again. The new generated report contains only last failed test.
I want to have all 30 tests of first report, with only failed tests replaced with last run test.
Here is the code am using
var path = System.Reflection.Assembly.GetCallingAssembly().CodeBase;
var actualPath = path.Substring(0, path.LastIndexOf("bin"));
var projectPath = new Uri(actualPath).LocalPath;
var reportPath = projectPath + "Reports\ExtentReport.html";
ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter("ExtentReport.html");
htmlReporter.AppendExisting = true;
_extent = new ExtentReports();
_extent.AttachReporter(htmlReporter);
It makes no difference either I set true or false to htmlReporter.AppendExisting .
Any help is appreciated.
The text was updated successfully, but these errors were encountered: