无法在Maven中使用Selenium连接二进制FirefoxBinary

时间:2012-11-22 14:00:46

标签: java maven selenium junit selenium-webdriver

我正在运行一些Selenium-Tests。当我直接从Eclipse启动它们时,一切正常。但是当我通过Maven启动它们时会发生以下异常:

org.openqa.selenium.WebDriverException(Failed to connect to binary FirefoxBinary(C:\winapp\Firefox\firefox.exe) on port 7055; process output follows: 
null
Build info: version: '2.26.0', revision: '18040', time: '2012-11-02 09:44:45'
System info: os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_35'
Driver info: driver.version: FirefoxDriver)

我使用的是Firefox 10.0.10 ESR。我也尝试过Selenium 2.25.0。

这是我最新版本的pom.xml:

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.10</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.26.0</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-server</artifactId>
        <version>2.26.0</version>
        <exclusions>
            <exclusion>
                <groupId>javax.servlet</groupId>
                <artifactId>servlet-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>com.thoughtworks.xstream</groupId>
        <artifactId>xstream</artifactId>
        <version>1.4.1</version>
        <type>jar</type>
    </dependency>
    <dependency>
        <groupId>org.jdom</groupId>
        <artifactId>jdom2</artifactId>
        <version>2.0.3</version>
    </dependency>
</dependencies>

如果我能为您提供更多信息,请告知我们。

编辑:更新的pom.xml

edit2:最让我感到奇怪的是,我可以在没有问题的情况下运行eclipse中的测试。他们刚刚发生,如果我称之为“mvn install”,例如

11 个答案:

答案 0 :(得分:29)

当我遇到这个错误时,它通常是两件事之一。

Selenium版本不支持浏览器版本 从Eclipse vs Maven运行时,仔细检查Selenium /浏览器版本是否相同。 仔细检查Eclipse和Maven配置为使用相同的Selenium版本。 当我的浏览器自动更新时,我发生这种情况,所以我在浏览器中关闭了它。

Selenium测试以无头模式运行 如果您在与Eclipse相同的机器上手动执行mvn,则不太可能。 在我的Jenkins服务器上通过Maven运行Selenium时,我发生了这种情况。 Jenkins服务器以无头模式运行。我花了很多时间来弄清楚无头的东西,想想我在Linux中设置了一个DISPLAY env变量。

答案 1 :(得分:5)

我想出了问题所在。

我加载了一些扩展来添加到我用来实例化FireFoxDriver的FirefoxProfile中。这些插件位于Java / main / resources下。在Eclipse中一切正常,但我无法通过Maven访问这些插件。将这些文件复制到临时文件夹后,从那里加载它们甚至可以从Maven工作。

感谢您的帮助

答案 2 :(得分:3)

尝试将此添加到您的pom

<强>更新:

<dependency>
    <groupId>org.seleniumhq.webdriver</groupId>
    <artifactId>selenium-firefox-driver</artifactId>
    <version>2.XX.X</version>
</dependency>

<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-server</artifactId>
    <version>2.XX.X</version>
</dependency> 

答案 3 :(得分:1)

Linux更新后出现了类似的问题。 我们测试了许多硒版本(2.42.2和2.43.1)和firefox(27.0.1到32.0.2)的组合,但问题始终存在。

我们在OpenMandriva下,项目在Eclipse和Maven下。

我们为我们找到了一个解决方案,即取代以下maven依赖

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.43.1</version>
    </dependency>   

以下所有人:

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-firefox-driver</artifactId>
        <version>2.43.1</version>
    </dependency>

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-support</artifactId>
        <version>2.43.1</version>
    </dependency>   

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-api</artifactId>
        <version>2.43.1</version>
    </dependency>

    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
        <version>3.0</version>
    </dependency>

    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.3.5</version>
    </dependency>

我想知道这个解决方案是否只是隐藏了真正的问题?

答案 4 :(得分:0)

如果您在尝试修复此问题时已将Firefox和Selenium更新到最新版本,并且您仍然遇到此问题,则可能已使用“重新启动更新”更新了Firefox。

关闭Firefox并确保Firefox可执行文件不再运行。然后尝试你的测试。它现在应该工作。

我猜这与使用“重新启动更新”时更新Firefox二进制文件的时间有关

答案 5 :(得分:0)

我在Firefox 36中遇到过这个问题,人们在35和44中也遇到了同样的问题。

首先,将Firefox升级到37或将其降级到低于33的任何值。

答案 6 :(得分:0)

在争吵了一段时间并尝试了大多数(如果不是全部)这里列出的选项后,我终于通过删除未使用的JAR - 我的构建路径中的ios-server-0.6.5-jar-with-dependencies.jar并使用组合来消除此错误FF34和selenium jars 2.48.2

只是想将此作为另一个选项发布,以防任何人遇到这个令人虚弱的问题。

答案 7 :(得分:0)

my recommendation is 

    ===> switch to firefox version 50.0 [latest One] , 

    ===> download the gecko driver from [.](https://github.com/mozilla/geckodriver/releases)  and 

    ===> Selenium version 3.0.1
     <dependency>
                <groupId>org.seleniumhq.selenium</groupId>
                <artifactId>selenium-java</artifactId>
                <version>3.0.1</version>
     </dependency>

    ==> On your Code 
private WebDriver driver;
System.setProperty("webdriver.gecko.driver", "PATH to GECKO DRIVER");
        driver = new FirefoxDriver();

    and yes you see the below output in your console :


    Dec 17, 2016 6:40:45 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Attempting bi-dialect session, assuming Postel's Law holds true on the remote end
    14819XXXXXXX5   mozprofile::profile INFO    Using profile path C:\Users\User\AppData\Local\XXXXX\rust_XXXprofile.OXXXXXXXXXXX7S
    148XXXXXXXXX0   geckodriver::marionette INFO    Starting browser C:\Program Files\Mozilla Firefox\firefox.exe
    148XXXXXXXXX1   geckodriver::marionette INFO    Connecting to Marionette on localhost:XXXXXXX
    148198XXXX077   Marionette  INFO    Listening on port 53532
    Dec 17, 2016 6:40:55 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Detected dialect: W3C
    [Child 4104] ###!!! ABORT: Aborting on channel error.: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line XXXX
    Dec 17, 2016 6:41:13 PM org.openqa.selenium.os.UnixProcess destroy

答案 8 :(得分:0)

尝试使用最新的硒服务器版本,您需要检查浏览器和硒服务器之间的兼容性。

    <dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>3.141.59</version>
    </dependency> 

答案 9 :(得分:-1)

找不到firefoxbinary路径。 请在使用firefox驱动程序之前设置firefox路径。

System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");

答案 10 :(得分:-2)

当您的Firefox缓存文件夹所在的磁盘上没有剩余空间时,也会出现同样的问题。只需释放空间并启动脚本!