Extent report report.endTest(test) method?
I'm messing around with Selenium Java Extent Reports. Their new version is out as of Oct 12 but I'm not seeing the endTest method. They haven't released their full documentation for v3.0.0 yet. Most everything is about the same usage-wise but the endTest method no longer seems to be available. Does anyone know how to end a test run so that multiple tests can be displayed in the same report file? report = ExtentFactory.getInstance(date, time); test = report.createTest("mytest"); test.log(Status.INFO, "test started"); // do some other stuff report.endTest(test); <-- this is no longer an option.