Skip to main content

Posts

Showing posts with the label Extent Reports

Extent Reports

  1.       ExtentReports is an logger-style reporting library for automated tests. 2.       A logger is simply an object to log messages or events for a specific system or application. 3.       ExtentReports uses the logging style to add information about test sessions, such as creation of tests, adding screenshots, assigning tags, and adding events or series of steps to sequentially indicate the flow of test steps.   Extent Reports in Selenium contain two frequently used classes: ·         ExtentReports class ·         ExtentTest class Syntax ExtentReports reports = new ExtentReports(" Path of directory to store the resultant HTML file ", true/false); ExtentTest test = reports.startTest("TestName");   Both classes can be used with the following built-in methods: ·       ...