运行项目时出现TestNG问题

时间:2016-04-28 04:51:06

标签: java eclipse maven testng testng-eclipse

以下是我运行TestNG.xml时报告的错误。即使我将范围更改为编译,它仍然没有修复。我也重新建造了这个项目。如果有人能为此提供可行的解决方案,我将不胜感激。

Exception in thread "main" org.testng.TestNGException:
6.1.1 is not a supported TestNG version
  at org.testng.remote.support.ServiceLoaderHelper.getFirst(ServiceLoaderHelper.java:22)
  at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:43)

项目的pom.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>TestVagrant</groupId>
    <artifactId>1</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.46.0</version>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.1.1</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>io.appium</groupId>
            <artifactId>java-client</artifactId>
            <version>3.0.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>

以下是TestNG XML:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite">
  <test name="Test">
    <classes>
      <class name="scenarios.AppiumTest"/>
    </classes>
  </test> <!-- Test -->
</suite> <!-- Suite -->

1 个答案:

答案 0 :(得分:3)

请使用最新版本升级TestNG。

然后,在项目的xml文件中更改TestNG的版本:

 <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.1.1</version>
        <scope>compile</scope>
    </dependency>

<dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version><!-- Updated Version Name --></version>
        <scope>compile</scope>
    </dependency>