如何从TestNG测试和Selenium接口调用默认方法?

时间:2017-11-16 19:52:48

标签: java selenium-webdriver java-8 testng default-method

我想知道是否可以使用TestNG @BeforeMethod注释界面中的默认方法?

以下是我尝试过的示例:

@Listeners(TestListener.class)
public interface ITestBase {
    String baseUrl = Config.getProperty(Config.TEST_HOST);
    String driverName = Config.getProperty(Config.BROWSER);
    DriversEnum driverInstance = DriversEnum.valueOf(driverName.toUpperCase());

    @BeforeMethod(alwaysRun = true)
    default public void start() {
        try {
            driver.init();
            DriverUnit.preconfigureDriver(Driver.driver.get());
            driver.get().manage().deleteAllCookies();
            driver.get().get(baseUrl);
        } catch (TimeoutException e) {
            Logger.logEnvironment("QT application is not available");
        }
    }

    @AfterMethod(alwaysRun = true)
    default public void end() {
        if (driver.get() != null) {
            try {
                driver.get().quit();
            } catch (UnreachableBrowserException e) {
                Logger.logDebug("UnreachableBrowser on close");
            } finally {
                driver.remove();
            }
        }
    }

当我运行典型的TestNG测试方法时,例如:

public class AppUiDemo implements ITestBase {
    @Test(enabled = true)
    public void checkWebDriverCreation() {
      ...
    }

start()end()方法未被调用。没有为测试执行创建驱动程序实例。

是否可以使用default方法和TestNG方法制作类似的内容?

如果我将接口更改为常规类,则在调用方法之前和之后(驱动程序实例创建正常):

public class TestBase {
    protected final String baseUrl = Config.getProperty(Config.TEST_HOST);
    protected final String driverName = Config.getProperty(Config.BROWSER);
    protected final DriversEnum driverInstance = DriversEnum.valueOf(driverName.toUpperCase());

    @BeforeMethod(alwaysRun = true)
    public void start() {
    ....

问题是我的测试类已经扩展了另一个类:

public class MainTest extends ExecutionContext

因此,我无法延伸TestBase

是否可以在测试方法之前和之后对执行代码的任何实现使用接口?

2 个答案:

答案 0 :(得分:5)

是的,这是可能的,但允许在测试中使用接口方法的TestNG版本尚未发布。您需要从this存储库下载它。

如果您使用 Maven ,则可以在pom.xml中指定其他存储库:

<repository>
    <id>testng</id>
    <name>testng</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>

然后添加TestNG依赖:

<dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.11.1-SNAPSHOT</version>
</dependency>

示例:

package test;

import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class DummyTest implements ITest {

    @BeforeMethod
    public void beforeTest() {
        System.out.println("before from class");
    }

    @Test
    public void test1() {
        System.out.println("I am test1");
    }
}

ITest 界面

package test;

import org.testng.annotations.BeforeMethod;

public interface ITest {

    @BeforeMethod
    default void beforeDefaultInterface() {
        System.out.println("before from default interface method");
    }
    @BeforeMethod
    static void beforeStaticInterface() {
        System.out.println("before from static interface method");
    }
}

上述测试的输出将为:

    before from default interface method
    before from static interface method
    before from class
    I am test1

答案 1 :(得分:0)

可以使用TestNg版本&#39; 6.14.2&#39;

替代回购,不再需要。
我还没试过其他版本。