使用maven和WebDriverManager

时间:2018-02-07 09:42:12

标签: java maven google-chrome selenium

我试图在Jenkins上进行测试(Selenium + junit + cucumber + Maven)。 在我的定义课程中,我没有指向Chrome二进制文件,而是使用WebDriverManager:

@Given(" ^我导航到页面$")

public void i_navigate_to_webpage() throws Throwable {

    String url = Helper.getPropValue("landing", "navigation");

    WebDriverManager.chromedriver().setup();
    driver = new ChromeDriver();
    wait = new WebDriverWait(driver,20);

    driver.manage().window().maximize();
    driver.get(url);

}

它在我的机器上工作正常(Win),但是当我试图在Jenkins(Ubuntu盒子)上执行此操作时,我收到错误:

  

org.openqa.selenium.WebDriverException:未知错误:找不到Chrome二进制文件     (驱动程序信息:chromedriver = 2.35.528139(47ead77cb35ad2a9a83248b292151462a66cd881),platform = Linux 4.4.0-1047-aws x86_64)(警告:服务器未提供任何堆栈跟踪信息)   命令持续时间或超时:687毫秒   构建信息:版本:' 2.48.2',修订版:' 41bccdd10cf2c0560f637404c2d96164b67d9d67',时间:' 2015-10-09 13:08:06'   系统信息:主机:' ip-172-31-12-150',ip:' 172.31.12.150',os.name:' Linux',os .arch:' amd64',os.version:' 4.4.0-1047-aws',java.version:' 1.8.0_151'   驱动程序信息:org.openqa.selenium.chrome.ChromeDriver       at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)       at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)       at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)       at java.lang.reflect.Constructor.newInstance(Constructor.java:423)       在org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:206)       在org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:158)       在org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:647)       在org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:247)       在org.openqa.selenium.remote.RemoteWebDriver。(RemoteWebDriver.java:129)       在org.openqa.selenium.remote.RemoteWebDriver。(RemoteWebDriver.java:142)       在org.openqa.selenium.chrome.ChromeDriver。(ChromeDriver.java:170)       在org.openqa.selenium.chrome.ChromeDriver。(ChromeDriver.java:159)       在org.openqa.selenium.chrome.ChromeDriver。(ChromeDriver.java:116)       在GridTest.grid.StepDef.i_navigate_to_webpage(StepDef.java:52)       在✽.Given我导航到页面(src / test / test.feature:6)

我的印象是WebDriverManager应该已经涵盖了它在我的Windows机器上的表现。不是吗?

我的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>GridTest</groupId>
  <artifactId>grid</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>grid</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <suiteXmlFile>testing.xml</suiteXmlFile>
  </properties>
  <build>
    <pluginManagement>
        <plugins>
            <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>
                                        com.lazerycode.selenium
                                    </groupId>
                                    <artifactId>
                                        driver-binary-downloader-maven-plugin
                                    </artifactId>
                                    <versionRange>
                                        [1.0.17,)
                                    </versionRange>
                                    <goals>
                                        <goal>selenium</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore></ignore>
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.20.1</version>
            </plugin>
        </plugins>
    </pluginManagement>
  </build>
    <dependencies>
    <dependency>
   <groupId>io.github.bonigarcia</groupId>
   <artifactId>webdrivermanager</artifactId>
    <version>2.1.0</version>
    </dependency>
    <dependency>
        <groupId>com.vimalselvam</groupId>
        <artifactId>cucumber-extentsreport</artifactId>
        <version>3.0.2</version>
    </dependency>
    <dependency>
        <groupId>com.aventstack</groupId>
        <artifactId>extentreports</artifactId>
        <version>3.1.1</version>
    </dependency>
    <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.12</version>
         <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.53.1</version>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-java</artifactId>
        <version>1.2.2</version>
    </dependency>
    <dependency>
        <groupId>info.cukes</groupId>
        <artifactId>cucumber-junit</artifactId>
        <version>1.2.2</version>
    </dependency>
   <dependency>
    <groupId>info.cukes</groupId>
    <artifactId>cucumber-core</artifactId>
    <version>1.2.2</version>
  </dependency>
  <dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-chrome-driver</artifactId>
    <version>2.48.2</version>
  </dependency>

  </dependencies>
</project>

3 个答案:

答案 0 :(得分:0)

Ubuntu上的Chrome没有安装到默认位置:

enter image description here

More detail

您可以将chrome二进制文件添加到PATH environent变量中,或者将其重新安装到默认位置。

确保chromedriver与Chrome浏览器兼容,请检查此link以获得兼容的映射

Chromedriver 2.35 Supports Chrome v62-64

从Linux终端隧道运行脚本时,如Jenkins运行。 一般来说,Linux终端隧道没有显示屏,但运行带有头部模型的脚本需要物理或虚拟显示。

选项1:在未通过xWindow / xvbf设置虚拟显示时使用headless模型运行

ChromeOptions options = new ChromeOptions();
options.addArguments("headless");
// Must maximize Chrome by `start-maximized`
options.addArguments("start-maximized");

//Dont maximize Chrome by below line, because has no display
driver.manage().window().maximize()

选项2:headful模式运行,但需要为Jenkins用于连接到Ubuntu框的用户设置虚拟显示,或者为所有用户设置 如果你不知道哪个用户。

请阅读有关Xvbf或其他xWindow的文档以设置虚拟显示。

答案 1 :(得分:0)

我发现了问题。在我的Linux系统上,未安装Google Chrome浏览器。

给我的印象是ChromeDriver二进制文件中包含一个浏览器实现。现在我意识到这是错误的,ChromeDriver二进制文件是一个调用Google Chrome的硒包装程序。

我必须说异常消息“ selenium.WebDriverException:未知错误:找不到Chrome二进制文件”令人困惑。如果它告诉您“未安装Chrome浏览器”或类似的东西,它会容易得多。

答案 2 :(得分:0)

您可以在 Jenkins 的构建设置中设置 chrome 路径作为目标:

-Dselenide.browserBinary="chrome/path_to_exe"