0

私はセレンWebドライバーを介してテストを書いていますここに私のコードがあります:

Pom.xml

<project>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>

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

    <build>
        <finalName>SeleniumebDriverProject</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.11</version>
                <configuration>
                    <!-- Skip the normal tests, we'll run them in the integration-test phase-->
                    <skip>false</skip> 
                </configuration>
                <executions>
                    <execution>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                        <configuration>
                            <skip>false</skip>
                            <includes>
                                <include>**/*Test.java</include>
                            </includes>
                        </configuration>
                    </execution> 
                </executions>
            </plugin>
        </plugins> 
    </build>
</project>

GoogleTest.javaという名前の私のテストクラス。この投稿を読んだ後:フェイルセーフプラグインは1つのプロジェクトでは実行されませんが、別のプロジェクトでは実行されます-なぜですか?

クラスの名前を変更したので、次のようになります。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>2.11</version>
    <configuration>
        <!-- Skip the normal tests, we'll run them in the integration-test phase-->
        <skip>false</skip> 
    </configuration>

    <executions>
        <execution>
            <goals>
              <goal>integration-test</goal>
              <goal>verify</goal>
            </goals>
        </execution>
    <executions>
</plugin>

しかし、問題は解決しません。

4

1 に答える 1

1

maven-failsafe-pluginの目標は、testではなくintegration-testという名前です。さらに、命名規則をmaven-failsafe-pluginの規則に変更した場合は、etc.ファイルを含む構成は必要ありません。デフォルトを使用してください。さらに、次の方法で統合テストの実行を開始したと思います。

mvn verify
于 2012-07-10T12:18:01.060 に答える