Я запускаю c# тесты и создаю отчет HTML для каждого теста. Я хочу сохранить историю тестов в отчете HTML. вот мой код протоколов экстентов:
currentTestName = name;
// start reporters
var reporter = new ExtentHtmlReporter(path);
// create ExtentReports and attach reporter(s)
report = new ExtentReports();
report.AttachReporter(reporter);
test = report.CreateTest(name, description);