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 8, 2019. It is now read-only.
I use htmlReporter.Configuration().DocumentTitle & htmlReporter.Configuration().ReportName in my code to set the report title and name at runtime. This was working in v3.02 but after upgrading to v3.1.3 these values are no longer being pulled from the code.
The title & name is always displayed as "ExtentReports".
My code:
Extent = new ExtentReports();
var filename = "C:\\myreport.html";
// initialize the HtmlReporter
var htmlReporter = new ExtentHtmlReporter(filename);
htmlReporter.Configuration().DocumentTitle = "My Test Automation Report";
htmlReporter.Configuration().ReportName = ReportTitle;
Extent.AttachReporter(htmlReporter);
htmlReporter.LoadConfig(@"Extent-Config.xml");
The text was updated successfully, but these errors were encountered:
Hi,
I use
htmlReporter.Configuration().DocumentTitle
&htmlReporter.Configuration().ReportName
in my code to set the report title and name at runtime. This was working in v3.02 but after upgrading to v3.1.3 these values are no longer being pulled from the code.The title & name is always displayed as "ExtentReports".
My code:
The text was updated successfully, but these errors were encountered: