JUNITを使用してselenium webdriverのmavenをセットアップしています。
テスト結果レポートを表示する最良の方法は何ですか?
また、可能であれば、良いものがあれば pom.xml も送信できますか。
ありがとうラジュ
JUNITを使用してselenium webdriverのmavenをセットアップしています。
テスト結果レポートを表示する最良の方法は何ですか?
また、可能であれば、良いものがあれば pom.xml も送信できますか。
ありがとうラジュ
テスト結果レポートの場合、test-outputディレクトリをtomcatサーバーにコピーするだけで、それを表示する必要がある人がコピーできます。
以下は私の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>VINCI_DART_Automation</groupId>
<artifactId>VINCI_DART_Automation</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.29.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.29.0</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>