2

Python Selenium で geckodriver を使用しました。簡単なコマンドdriver = Webdriver.Firefox()で、python スクリプトがハングアップします。デバッグしたところ、geckodriver が応答していないことがわかりました。geckodriver を手動で起動しましたが、curl も応答しません。しかし、Firefox インスタンスは開始されて準備ができていますが、geckodriver は HTTP 応答を送信しませんでした。さらにデバッグする方法についてのアイデアはありますか? geckodriver にパッチが必要な場合でも、試してみたいと思います。

$ geckodriver --port 57738 &> gecko.log &
[1] 16123
$ jobs
[1]  + running    geckodriver --port 57738 &> gecko.log
$ curl -v --data '{"requiredCapabilities": {}, "desiredCapabilities": {"javascriptEnabled": true, "browserName": "firefox", "version": "", "platform": "ANY", "marionette": true}}' http://127.0.0.1:57738/session
* Hostname was NOT found in DNS cache
*   Trying 127.0.0.1...
* Connected to 127.0.0.1 (127.0.0.1) port 57738 (#0)
> POST /session HTTP/1.1
> User-Agent: curl/7.35.0
> Host: 127.0.0.1:57738
> Accept: */*
> Content-Length: 160
> Content-Type: application/x-www-form-urlencoded
> 
* upload completely sent off: 160 out of 160 bytes

gecko.log

$ cat gecko.log 
1479507861533   geckodriver INFO    Listening on 127.0.0.1:57738
1479507874758   mozprofile::profile INFO    Using profile path /tmp/rust_mozprofile.fkk6AqrNIGxB
1479507874759   geckodriver::marionette INFO    Starting browser /usr/bin/firefox
1479507874763   geckodriver::marionette INFO    Connecting to Marionette on localhost:36577
+ exec /usr/bin/firefox.real --marionette --profile /tmp/rust_mozprofile.fkk6AqrNIGxB

(firefox:16144): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed

(firefox:16144): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed

(firefox:16144): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed

(firefox:16144): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed
1479507875413   Marionette  INFO    Listening on port 36577
4

0 に答える 0