testng.xml套件如果失败则跳过所有测试类,它仅适用于Microsoft Edge Browser

时间:2018-06-14 05:16:54

标签: selenium testng microsoft-edge testng-eclipse selenium-edgedriver

使用testng.xml套件执行多个类,其中如果任何单个类或测试失败,它将仅跳过该特定测试并继续下一个测试套件,用于Firefox和Chrome。但是,如果是微软边缘,它无法处理失败测试套件。它创建了Fail / Skip脚本以供所有人休息。

.XMl套件的参考:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite"  parallel="tests" verbose="1">
    <test name="Login-Registration Test" preserve-order="true">
        <classes>
            <class name="myAccount.login" />
            <class name="myAccount.registration" />
        </classes>
    </test> 
    <!-- Test -->
</suite> <!-- Suite -->

这里是2个类的示例,它将执行Login Test套件,然后将该套件作为套件执行。但是,如果Login失败,它将不会执行Register Suite for Edge。哪个适用于Firefox和Chrome。

我正在使用WebDriver调用浏览器:

        // driver = new ChromeDriver();
        // driver = new FirefoxDriver();
        driver = new EdgeDriver();

使用ITestResult

在每个@Test之后调用@AfterMethod注释
 @AfterMethod
    public void calltestStatus(ITestResult result) throws IOException
    {
        testStatus(result);
        count++;
        driver.manage().deleteAllCookies();
    }

这是ITestResult的定义,

public void testStatus(ITestResult result) throws IOException
    {
        if (result.getStatus() == ITestResult.FAILURE) {

            testResult = "Test Fail :" + result.getName();

            testResult = "Details of Fail Testcase:" + result.getThrowable();
            extentReport.flush();

        } else if (result.getStatus() == ITestResult.SUCCESS) {

            testResult = "Test Pass :" + result.getName();

        } else if (result.getStatus() == ITestResult.SKIP) {

            testResult = "Test Skip :" + result.getName();

        } else {

            testResult = "Test Undefined :" + result.getName() + "<br>Status : " + result.getStatus();

            testResult = "Details of undefined Testcase:" + result.getThrowable();
        }
    }

TestNG或Selenium对Edge的工作方式不同?

1 个答案:

答案 0 :(得分:1)

这是Edge Browser的限制,它只能为Web驱动程序测试调用单个实例。

与我的情况相关,当它失败并调用另一个实例来打开另一个套件的Edge Browser时,到目前为止还不支持Edge驱动程序。所以它得到了Skip并且无法休息。

https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/13618786/ Click to See