目前我有一個包含4個Selenium/Maven測試的GitHub回購。我能夠通過MVN測試,以我的本地計算機上單獨運行各個測試如何讓詹金斯運行我的Maven/Selenium GitHub測試
我有詹金斯也是我的本地機器上運行,並且創建了一個Maven項目來拉我的GitHub庫,在的一個選擇的pom.xml測試(P_ProfileChangeMavenTest),然後執行測試作爲我的maven目標。
當詹金斯運行我的測試時,它開始通過我的maven項目,但不拉起Firefox瀏覽器與我的測試進行交互。
的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>com.test.profilechange</groupId>
<artifactId>Profile</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Profile</name>
<description>PRofile</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.39.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire</artifactId>
<version>2.16</version>
<type>pom</type>
</dependency>
</dependencies>
</project>
我是相當新的自動化,我試圖確認一切正常,我的本地機器上的第一個發送這些測試與硒網格中的服務器上運行了。
所有的幫助將不勝感激,因爲我需要儘快得到這個工作。
感謝先進!
根據你的錯誤,它說「元素不可見異常」。讓我們來談談谷歌。 – sircapsalot