Eclipseでjavaを使ってSelenium Test Casesを作成しました。私はJenkinsを使ってこれらのテストを実行したい。ビルドオートメーションツールにはMavenも使用しています。 JenkinsのBuild Now機能を使用すると、Console OutputにBuild Success Messageが表示されますが、テストは実行されません。 JenkinsからMain Methodをどのように呼び出すべきかを知りたかったのです。 pomファイルに追加する必要があるプラグインがありますか?JenkinsとMavenを使ってSeleniumテストを実行する
<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>SecondOne</groupId>
<artifactId>Project2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.45.0</version>
</dependency>
<dependency>
<groupId>org.jopendocument</groupId>
<artifactId>jOpenDocument</artifactId>
<version>1.3b1</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>src.main.java.pack1.FirstClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
</project>
私はないはTestNGのを使用していますのでご注意ください。
[2] enter image description here
私は下に存在POMファイルをコピーしています[ここに画像の説明を入力します]またはその他の一般的なテストフレームワーク。 助けをお寄せいただきありがとうございます
ジェンキンズがあなたのプログラムを実行するのはなぜですか? – tkausl
ジェンキンスであなたのmvnプログラムをビルドするのに使ったコマンドは何ですか?そして、あなたが知りたいこと - テストケースを実行するか、メインクラスを見つけるか? –
@RavindraDevadiga - 私はJenkins Dashboardにある 'Build Now'機能を使用しました。また、Jenkinsのプロジェクトの設定タブでは、POMファイルへのパスを追加しました。テストのクリーンに「目標とオプション」フィールドを設定しました。私はテストケースを実行したい。 – Gaurav