这是分叉过程中的错误(当我从Maven运行时,测试未运行)

时间:2018-06-22 11:50:04

标签: selenium-webdriver testng maven-3

这是我的pom.xml

<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>bigbasket</groupId>
  <artifactId>testmaven</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>testmaven</name>
  <url>http://maven.apache.org</url>



  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

      </properties> 

   <build>

<!--    <resources> -->
<!--    <resource> -->
<!-- <excludes> -->
<!-- <exclude>**/*.java</exclude> -->
<!-- </excludes> -->
<!-- </resource> -->
<!-- </resources> -->

   <plugins>
       <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
                <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.21.0</version>
          <configuration>

         <properties>
            <property>
              <name>objectfactory</name>
              <value>testng.objectfactory.TestNGCustomObjectFactory</value>
            </property>
          </properties>
           <source>1.8</source>
          <target>1.8</target>
          <suiteXmlFiles>
          <File>testng.xml</File>
          </suiteXmlFiles>
          </configuration>
        </plugin>

        </plugins>

      </build> 

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

    </dependency>  
    <dependency>
  <groupId>org.testng</groupId>
  <artifactId>testng</artifactId>
  <version>6.9.10</version>
  <scope>test</scope>
</dependency>

  </dependencies>

我遇到这些错误

  

[ERROR]分叉的过程中有错误

     

[错误]套件文件/Users/kirandalai/eclipse-workspace/testmaven/testng.xml不是有效文件

     

[错误] org.apache.maven.surefire.booter.SurefireBooterForkException:分叉过程中存在错误

     

[错误]套件文件/Users/kirandalai/eclipse-workspace/testmaven/testng.xml不是有效文件

     

[ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:658)

0 个答案:

没有答案