测试和页面类中ITestListener的ExtentTest实例

时间:2017-07-23 14:15:46

标签: java testing selenium-webdriver automation testng

我正在尝试将ExtentReports与ITestListener一起使用。我面临的问题是我无法在Test类中使用ITestListener中的ExtentTest实例进行日志记录。请帮帮我。

以下是听众类。

package com.dice.listeners;

import org.testng.ITestContext;
import org.testng.ITestListener;
import org.testng.ITestResult;

import com.relevantcodes.extentreports.ExtentReports;
import com.relevantcodes.extentreports.ExtentTest;

public class ExtentListener implements ITestListener    
{
    private ExtentReports reports = new ExtentReports("File Location");
    private ExtentTest test;

    @Override
      public void onTestStart(ITestResult arg0)
    {
        test = reports.startTest(arg0.getMethod().getMethodName());
    }

    @Override
      public void onFinish(ITestContext arg0)
    {
        reports.endTest(test);
        reports.flush();
        reports.close();
    }

    @Override
      public void onTestFailure(ITestResult arg0)
    {
    }

    @Override
      public void onTestSuccess(ITestResult arg0)
    {
    }

    @Override
      public void onTestSkipped(ITestResult arg0)
    {
        // TODO Auto-generated method stub
    }

    @Override
      public void onStart(ITestContext arg0)
    {
        // TODO Auto-generated method stub
    }

    @Override
      public void onTestFailedButWithinSuccessPercentage(ITestResult arg0)
    {
        // TODO Auto-generated method stub
    }
}

以下是测试类。

package com.dice;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Listeners;
import org.testng.annotations.Test;

import com.dice.base.BaseTest;
import com.dice.listeners.ExtentListener;
import com.relevantcodes.extentreports.*;

@Listeners(com.dice.listeners.ExtentListener.class)
public class FirstTest extends BaseTest {

    @Test
    public void firstTestMethod() {
        driver.get("http://www.dice.com");
        test.log(LogStatus.INFO, "opening dice.com"); /*'test' not same instance as in ExtentListener class*/
    }

    @Test
    public void secondTestMethod() {
        driver.get("http://www.linkedin.com");
        test.log(LogStatus.INFO, "opening linkedin.com");/*'test' not same instance as in ExtentListener class*/
    }
}

1 个答案:

答案 0 :(得分:0)

在第13行的Class ExtentListener中,实例" test"被创建为"私人"这是一个访问修饰符,它只将可见性限制在类本身中。因此,请尝试将访问修饰符更改为public。

refer根据您的要求使用合适的访问修饰符。 希望这会有所帮助。