1

我正在将 jenkins 与 phantomjs 集成以运行我的 selenium 测试脚本。Phantomjs 安装在我的 jenkins 服务器中,并且 ghost 驱动程序在端口 8090 中运行。但是,我的测试仍然被跳过并且它抛出了一个异常

驱动程序可执行文件的路径必须由 phantomjs.binary.path 能力/系统属性/PATH 变量设置;有关更多信息,请参阅https://github.com/ariya/phantomjs/wiki。最新版本可以从 http://phantomjs.org/download.html下载”

我的詹金斯在 centos 中运行。

我的代码如下所示,

@BeforeClass
  public void setUp() throws Exception {
      dCaps = new DesiredCapabilities();
      driver = new PhantomJSDriver(dCaps);
      baseUrl = "";
          driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
  }
4

2 回答 2

2

驱动程序可执行文件的路径必须由 phantomjs.binary.path 能力/系统属性/PATH 变量设置;

您应该明确指出将 phantomJm exe 放置在应该执行测试的机器上的位置。所以我找到了两种解决方法:

1)可能性#1(在代码中明确指出)

@BeforeClass
    public void seleniumGrridUponGhostDriver() throws MalformedURLException {

        File phantomjs = new File(System.getProperty("java.io.tmpdir")+File.separator+"phantomjs-1.9.7");


        DesiredCapabilities dcaps = new DesiredCapabilities();
        dcaps.setCapability("takesScreenshot", true);


        dcaps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, phantomjs.getAbsolutePath());

   this.driver = new RemoteWebDriver(new URL("http://162.243.175.134:8080"), dcaps);


        driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
        driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);

        //page instances init()
        loginPage = PageFactory.initElements(driver, LoginPage.class);
        homePage = PageFactory.initElements(driver, FacebookUserPage.class);
    }

2) 可能性 #2,使用 PhantomJS Windows/Mac OS X/Linux 本机二进制嵌入器

pom.xml 依赖:

<!--substituting   phanbedder  with local Phanbedder implementation-->
                     <dependency>
                 <groupId>net.anthavio</groupId>
                 <artifactId>phanbedder-1.9.7</artifactId>
                 <version>1.0.0</version>
             </dependency>



             <dependency>
                 <groupId>com.github.detro.ghostdriver</groupId>
                 <artifactId>phantomjsdriver</artifactId>
                 <version>1.1.0</version>
             </dependency>

代码:

 import net.anthavio.phanbedder.Phanbedder;

 @BeforeClass
    public void seleniumGrridUponGhostDriver() throws MalformedURLException {


       File phantomjs = Phanbedder.unpack(); //Phanbedder to the rescue!
  DesiredCapabilities dcaps = new DesiredCapabilities();
        dcaps.setCapability("takesScreenshot", true);


        dcaps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, phantomjs.getAbsolutePath());

   this.driver = new RemoteWebDriver(new URL("http://162.243.175.134:8080"), dcaps);


        driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
        driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);

        //page instances init()
        loginPage = PageFactory.initElements(driver, LoginPage.class);
        homePage = PageFactory.initElements(driver, FacebookUserPage.class);
    }

希望这可以帮助你

于 2014-08-05T10:49:47.373 回答
1

我也为此苦苦挣扎,并且已经在 Linux 上构建了 Jenkins,并希望使用该安装。使用系统属性不起作用(对于服务,甚至 Jenkins 中的全局 Maven 属性)。

我不喜欢上面的编程方法,因为它将解决方案与平台特定的配置联系在一起。

最后,起作用的是将它放入 POM 中。

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <configuration>
                        <systemProperties>
                            <phantomjs.binary.path>/usr/local/phantomjs/bin/phantomjs</phantomjs.binary.path>
                        </systemProperties>
                    </configuration>
                </plugin>

这是对我有用的更详细的描述(不是我的文章): http ://balamaci.ro/continous-integration-with-jenkins-docker-ansible-webdriver/

于 2015-08-07T09:38:28.660 回答