4

Mac OSX10.6.3でWebDriverを使用してWebアプリケーションのヘッドレステストを実行しようとしています。私の計画はXvfbでfirefox-x11を実行することですが、WebDriverはfirefox-x11を起動できません。私のコードは次のとおりです。

System.setProperty("webdriver.firefox.bin", 
                   "/opt/local/bin/firefox-x11-devel-standalone"); 
WebDriver browser = new FirefoxDriver();
try {
    browser.get("http://google.com");
} finally {
    browser.close();
}

しかし、これは次の場合に失敗します。

org.openqa.selenium.WebDriverException: Unable to start firefox cleanly.

Exit value: 1
Ran from: [/opt/local/bin/firefox-x11-devel-standalone, --verbose, -silent]

System info: os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.6.3', java.version: '1.6.0_17'
Driver info: driver.version: firefox
    at org.openqa.selenium.firefox.FirefoxBinary.copeWithTheStrangenessOfTheMac(FirefoxBinary.java:200)
    at org.openqa.selenium.firefox.FirefoxBinary.startProfile(FirefoxBinary.java:83)
    at org.openqa.selenium.firefox.FirefoxBinary.clean(FirefoxBinary.java:264)
    at org.openqa.selenium.firefox.FirefoxLauncher.startProfile(FirefoxLauncher.java:66)
    at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.<init>(NewProfileExtensionConnection.java:45)
    at org.openqa.selenium.firefox.internal.ExtensionConnectionFactory.connectTo(ExtensionConnectionFactory.java:44)

ターミナルから手動で起動すると、無害なエラーが/opt/local/bin/firefox-x11-devel-standalone表示されているにもかかわらず、正常に動作しているようです。そこで、エラーを無視して値1を終了するようにメソッドにパッチを適用しようとしました。これでさらに進みますが、次のように失敗します。org.openqa.selenium.firefox.FirefoxBinary.copeWithTheStrangenessOfTheMac(ProcessBuilder)

Caused by: org.openqa.selenium.WebDriverException: Failed to connect to binary FirefoxBinary(/opt/local/bin/firefox-x11-devel-standalone) on port 7055; process output follows: 
Xlib:  extension "RANDR" missing on display "/tmp/launch-tElCRZ/org.x:0".
Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded!

(firefox-bin:88837): Gtk-CRITICAL **: gtk_widget_has_screen: assertion `GTK_IS_WIDGET (widget)' failed
ˇXlib:  extension "RANDR" missing on display "/tmp/launch-tElCRZ/org.x:0".
Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded!

(firefox-bin:88877): Gtk-CRITICAL **: gtk_widget_has_screen: assertion `GTK_IS_WIDGET (widget)' failed
ˇ
System info: os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.6.3', java.version: '1.6.0_17'
Driver info: driver.version: firefox
    at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.connectToBrowser(NewProfileExtensionConnection.java:60)
    at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.<init>(NewProfileExtensionConnection.java:49)
    at org.openqa.selenium.firefox.internal.ExtensionConnectionFactory.connectTo(ExtensionConnectionFactory.java:44)
    ... 4 more
Caused by: org.openqa.selenium.firefox.NotConnectedException: Failed to start up socket within 45000
    at org.openqa.selenium.firefox.internal.AbstractExtensionConnection.connectToBrowser(AbstractExtensionConnection.java:143)
    at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.connectToBrowser(NewProfileExtensionConnection.java:58)
    ... 6 more

WebDriverをfirefox-x11で動作させる人はいますか?この投稿は、1人の人がそれを機能させたことを示唆しているようですが、詳細はあまり含まれていません。

4

1 に答える 1

2

$DISPLAY正しく設定されていないようです。Xvfb を使用するように構成したディスプレイではなく、launchd によって設定されます。

于 2010-05-17T01:22:51.907 に答える