Search code examples
seleniumselenium-webdrivertestngextentreportsextent

Configuring ExtentReports to provide accurate test statuses and screenshot on failure


I am having some difficulty tweaking ExtentReports to provide the desired output.

I have a simple test framework with TestNG, using a TestBase class to do the heavy lifting to keep tests simple. I wish to implement ExtentReports in a simple fashion, using the TestNG ITestResult interface to report Pass, Fail and Unknown.

Here are example tests, 1 pass and 1 deliberate fail:

public class BBCTest extends TestBase{

@Test
public void bbcHomepagePass() throws MalformedURLException {

    assertThat(driver.getTitle(), (equalTo("BBC - Home")));
}

@Test
public void bbcHomePageFail() throws MalformedURLException {

    assertThat(driver.getTitle(), (equalTo("BBC - Fail")));
}

And here is the relevant section in TestBase: public class TestBase implements Config {

protected WebDriver driver = null;
private Logger APPLICATION_LOGS = LoggerFactory.getLogger(getClass());
private static ExtentReports extent;
private static ExtentTest test;
private static ITestContext context;
private static String webSessionId;

@BeforeSuite
@Parameters({"env", "browser"})
public void beforeSuite(String env, String browser) {
    String f = System.getProperty("user.dir") + "\\test-output\\FabrixExtentReport.html";
    ExtentHtmlReporter h = new ExtentHtmlReporter(f);
    extent = new ExtentReports();
    extent.attachReporter(h);
    extent.setSystemInfo("browser: ", browser);
    extent.setSystemInfo("env: ", env);
}

@BeforeClass
@Parameters({"env", "browser", "login", "mode"})
public void initialiseTests(String env, String browser, String login, String mode) throws MalformedURLException {
    EnvironmentConfiguration.populate(env);
    WebDriverConfigBean webDriverConfig = aWebDriverConfig()
            .withBrowser(browser)
            .withDeploymentEnvironment(env)
            .withSeleniumMode(mode);

    driver = WebDriverManager.openBrowser(webDriverConfig, getClass());
    String baseURL = EnvironmentConfiguration.getBaseURL();
    String loginURL = EnvironmentConfiguration.getLoginURL();
    APPLICATION_LOGS.debug("Will use baseURL " + baseURL);

    switch (login) {
        case "true":
            visit(baseURL + loginURL);
            break;
        default:
            visit(baseURL);
            break;
    }
    driver.manage().deleteAllCookies();
}

@BeforeMethod
public final void beforeTests(Method method) throws InterruptedException {
    test = extent.createTest(method.getName());
    try {
        waitForPageToLoad();
        webSessionId = getWebSessionId();
    } catch (NullPointerException e) {
        APPLICATION_LOGS.error("could not get SessionID");
    }
}


@AfterMethod
public void runAfterTest(ITestResult result) throws IOException {
    switch (result.getStatus()) {
        case ITestResult.FAILURE:
            test.fail(result.getThrowable());
            test.fail("Screenshot below: " + test.addScreenCaptureFromPath(takeScreenShot(result.getMethod().getMethodName())));
            test.fail("WebSessionId: " + webSessionId);
            break;
        case ITestResult.SKIP:
            test.skip(result.getThrowable());
            break;
        case ITestResult.SUCCESS:
            test.pass("Passed");
            break;
        default:
            break;
    }
}

private String takeScreenShot(String methodName) {
    String path = System.getProperty("user.dir") + "\\test-output\\" + methodName + ".jpg";
    try {
        File screenshotFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
        FileUtils.copyFile(screenshotFile, new File(path));
    } catch (Exception e) {
        APPLICATION_LOGS.error("Could not write screenshot" + e);
    }
    return path;
}

@AfterClass
public void tearDown() {
    driver.quit();
}

@AfterSuite()
public void afterSuite() {
    extent.flush();
}

Here is the report:

enter image description here

The issues are:

  1. The name of the failed test is not recorded at left hand menu
  2. The screenshot is not displayed despite correctly being taken
  3. It is reporting both a Pass and Unexpected for the passed test

Solution

  • Version 3.0

    Most of code is provided by person created this library, i just modified to your needs.

    public class TestBase {
    
        private static ExtentReports extent;
        private static ExtentTest test;
    
        @BeforeSuite
        public void runBeforeEverything() {
            String f = System.getProperty("user.dir")+ "/test-output/MyExtentReport.html";
            ExtentHtmlReporter h = new ExtentHtmlReporter(f);
            extent = new ExtentReports();
            extent.attachReporter(h);
        }
    
        @BeforeMethod
        public void runBeforeTest(Method method) {
            test = extent.createTest(method.getName());
        }
    
        @AfterMethod
        public void runAfterTest(ITestResult result) {
            switch (result.getStatus()) {
            case ITestResult.FAILURE:
                test.fail(result.getThrowable());
                test.fail("Screenshot below: " + test.addScreenCaptureFromPath(takeScreenShot(result.getMethod().getMethodName())));
                break;
            case ITestResult.SKIP:
                test.skip(result.getThrowable());
                break;
            case ITestResult.SUCCESS:
                test.pass("Passed");
                break;
            default:
                break;
            }
            extent.flush();
        }
    
        protected String takeScreenShot(String methodName) {
            String path = "./screenshots/" + methodName + ".png";
            try {
                File screenshotFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
                FileUtils.copyFile(screenshotFile, new File(path));
            } catch (Exception e) {
                APPLICATION_LOGS.error("Could not write screenshot" + e);
            }
            return path;
        }
    }