TestNG跳过一些测试而没有任何错误消息

时间:2019-02-23 08:10:10

标签: selenium-webdriver testng testng.xml

我正在使用testng.xml执行测试,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="FREE CRM Test Automation Suite">

<listeners>
    <listener class-name="com.crm.qa.ExtentReportListener.ExtentReporterNG" />
</listeners>

<test name="Free CRM Test Cases">
    <classes>
        <class name="com.crm.qa.testcases.LoginPageTest"></class>
        <class name="com.crm.qa.testcases.HomePageTest"></class>
        <class name="com.crm.qa.testcases.ContactsPageTest"></class>
    </classes>
</test>
</suite>

LoginPageTest有3种方法,HomePageTest有11种方法,ContactsPageTest有3种方法。

当我分别运行这些测试时,所有测试运行正常,没有任何错误。但是当我使用testng.xml运行时,只有4种方法正在执行而没有任何错误:

===============================================
FREE CRM Test Automation Suite
Total tests run: 4, Failures: 0, Skips: 0
===============================================

我希望总共应该执行17种方法。请帮助解决此问题。

谢谢, 埃克纳斯·德豪斯卡

0 个答案:

没有答案