web-dev-qa-db-ja.com

実行のデフォルト-目標org.Apache.maven.plugins:maven-surefire-plugin:2.17:testのテストに失敗しました:フォークされたプロセスでエラーが発生しました

Mavenからインストールを実行しているときにこのエラーが発生します:

手順-Mavenクリーン-正常なMavenインストールの実行-"[エラー]プロジェクトcom.learn.Seleniumでゴールorg.Apache.maven.plugins:maven-surefire-plugin:2.17:test(default-test)を実行できませんでした:実行default-ゴールのテストorg.Apache.maven.plugins:maven-surefire-plugin:2.17:test failed:フォークされたプロセスにエラーがありました。 "

私はSeleniumの初心者です、どんな助けでも本当にありがたいです、以下は私のPOMxmlです

**<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>com.learn</groupId>
  <artifactId>com.learn.Selenium</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>demo</name>
  <description>demo</description>
 <properties>
<suiteXmlFile>src/main/resources/testng.xml</suiteXmlFile>

</properties> 
<dependencies>
  <dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.11</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.seleniumhq.Selenium</groupId>
    <artifactId>Selenium-Java</artifactId>
    <version>3.4.0</version>
</dependency>
<dependency>
    <groupId>org.Apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>3.6</version>
</dependency>
<dependency>
<groupId>org.Apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.6</version>
</dependency>
<dependency>
<groupId>org.Apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>3.6</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.Apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
            <groupId>com.relevantcodes</groupId>
            <artifactId>extentreports</artifactId>
            <version>2.40.1</version>
        </dependency>
<dependency>
            <groupId>org.Apache.maven.surefire</groupId>
            <artifactId>surefire</artifactId>
            <version>2.18.1</version>
            <type>pom</type>
        </dependency>

  </dependencies>
  <build>

<plugins>

<plugin>

<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>

<suiteXmlFiles>
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>

</configuration>
</plugin>
</plugins>
</build>
</project>**
3
Soumyansh Gupta

suiteXmlFileを適切に作成している場合は、maven-surefire-pluginバージョンを2.19.1にアップグレードする必要があると思います。 suiteXmlFileの実際のパスを指定する必要があります(例:<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>)。 <suiteXmlFile>${suiteXmlFile}</suiteXmlFile>を使用する場合は、run mvn clean install test -DsuiteXmlFile=testngSuite.xmlを使用する必要があります。詳細については、以下のリンク(maven-surefire-pluginドキュメント)を参照できます。

http://maven.Apache.org/surefire/maven-surefire-plugin/examples/testng.html

http://www.seleniumeasy.com/maven-tutorials/how-to-execute-Selenium-webdriver-testng-xml-using-maven

6
Anshul Sharma