使用Selenium RemoteWebDriver运行PhantomJS时出错

时间:2013-09-09 18:31:27

标签: python selenium selenium-webdriver phantomjs selenium-grid

我使用它的默认启动命令

启动selenium网格集线器
java -jar selenium-server-standalone-2.33.0.jar -role hub

我在同一台机器上用它的webdriver模式启动PhantomJS,比如,

phantomjs --webdriver=8080 --webdriver-selenium-grid-hub=http://127.0.0.1:4444

当PhantomJS启动时,除了" All' OK'"消息

[INFO  - 2013-09-09T18:10:38.849Z] GhostDriver - Main - running on port 8080
[INFO  - 2013-09-09T18:10:38.850Z] GhostDriver - Main - registering to Selenium HUB 'http://127.0.0.1:4444' using '127.0.0.1:8080'
[INFO  - 2013-09-09T18:11:47.164Z] HUB Register - register - Registered with grid hub: http://127.0.0.1:4444/ (ok)

但如果我尝试使用该浏览器,请

driver = webdriver.Remote(command_executor='http://127.0.0.1:4444/wd/hub',
                          desired_capabilities=DesiredCapabilities.PHANTOMJS)

查看PhantomJS可执行文件的输出,

[INFO  - 2013-09-09T18:17:12.531Z] Session [0c5c9500-197c-11e3-8eed-b3b7a73965aa] - _decorateNewWindow - page.settings: {"XSSAuditingEnabled":false,"javascriptCanCloseWindows":true,"javascriptCanOpenWindows":true,"javascriptEnabled":true,"loadImages":true,"localToRemoteUrlAccessEnabled":false,"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.9.2 Safari/534.34","webSecurityEnabled":true}
[INFO  - 2013-09-09T18:17:12.531Z] Session [0c5c9500-197c-11e3-8eed-b3b7a73965aa] - page.customHeaders:  - {}
[INFO  - 2013-09-09T18:17:12.531Z] Session [0c5c9500-197c-11e3-8eed-b3b7a73965aa] - CONSTRUCTOR - Desired Capabilities: {"platform":"ANY","javascriptEnabled":true,"browserName":"phantomjs","version":""}
[INFO  - 2013-09-09T18:17:12.531Z] Session [0c5c9500-197c-11e3-8eed-b3b7a73965aa] - CONSTRUCTOR - Negotiated Capabilities: {"browserName":"phantomjs","version":"1.9.2","driverName":"ghostdriver","driverVersion":"1.0.4","platform":"mac-10.7 (Lion)-32bit","javascriptEnabled":true,"takesScreenshot":true,"handlesAlerts":false,"databaseEnabled":false,"locationContextEnabled":false,"applicationCacheEnabled":false,"browserConnectionEnabled":false,"cssSelectorsEnabled":true,"webStorageEnabled":false,"rotatable":false,"acceptSslCerts":false,"nativeEvents":true,"proxy":{"proxyType":"direct"}}
[INFO  - 2013-09-09T18:17:12.531Z] SessionManagerReqHand - _postNewSessionCommand - New Session Created: 0c5c9500-197c-11e3-8eed-b3b7a73965aa

所有似乎都没问题,但是代码崩溃了:/我得到了一个巨大的错误堆栈跟踪,主要归结为,

selenium.common.exceptions.WebDriverException: Message: u'Error forwarding the new session new session request for webdriver should contain a location header with the session.'

如果检查网格集线器的输出,

INFO: Trying to create a new session on test slot {seleniumProtocol=WebDriver, browserName=phantomjs, maxInstances=1}
INFO: Available nodes: [host :http://127.0.0.1:8080 time out : 300000]

似乎还有一个问题。似乎无论出于何种原因,网格集线器都不会从PhantomJS可执行文件中获取任何信息,即使它似乎就像正在正确处理事物一样。

为了进行测试,我还在同一台机器上运行了一个常规的selenium节点,并带有命令

java -jar selenium-server-standalone-2.33.0.jar -role node

如果我用

启动Firefox RemoteWebDriver会话(在Python中)
driver = webdriver.Remote(command_executor='http://127.0.0.1:4444/wd/hub',
                          desired_capabilities=DesiredCapabilities.FIREFOX)
一切都很好。

看起来所有东西都设置正确,我把东西保持为' vanilla'并且尽可能接近文档所说的内容,但这里无法克服障碍。

尝试使用Java时也会发生完全相同的错误

WebDriver driver = new RemoteWebDriver(DesiredCapabilities.phantomjs());

两个连接的网格控制台的屏幕截图,PhantomJS还活着,

enter image description here

左边是默认的selenium节点,右边是PhantomJS(10.0.0.222是我的笔记本电脑在工作中的IP地址)。

我的版本对于PhantomJS是1.9.2,对于硒来说显然是2.33.0。

1 个答案:

答案 0 :(得分:11)

原来这是1.9.2版本的phantomjs中的 bug 功能。他们更新到最新的ghostdriver(v1.4)库和我想象这是它的介绍。 Ghostdriver遵循新的Selenium协议,使用帖子创建会话而不使用位置标头。 Selenium现在从帖子的主体中的json抓取位置等。事实证明,您所看到的错误以及我所看到的错误是因为您正在使用旧的selenium jar,它使用旧式会话创建协议和新版本的selenium。现在你的问题的答案是回到phantomjs 1.9.1 将你的selenium jar更新到2.35.0(见下面的链接)。为了重现你的错误,我测试了ruby和python selenium webdrivers以及作为hub运行的2.33.0 selenium jar和作为ghostdriver worker运行的phantomjs 1.9.2。

以下是github问题中描述的相同错误:

https://github.com/ariya/phantomjs/issues/11610

我认为这与此特定提交有关。您可以看到“位置”的标题已被删除。

https://github.com/detro/ghostdriver/commit/60bf3c90aa825cc3db4fa899b6a67bb7f109d55d

以下是上述提交针对的问题的说明: https://github.com/detro/ghostdriver/issues/247

从那以后你可以看到这是一个解决方案,使用selenium-webdrivers最新协议: “新规范:https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session 硒的变化:https://code.google.com/p/selenium/source/detail?r=8c3c65772d57

它看起来像更新到最新的selenium-webdriver-standalone jar将允许你使1.9.2工作。我已经确认我的ruby webdriver现在可以与2.35.0 jar和phantomjs 1.9.2成功连接。

你可以在这里获得最新的jar:

https://code.google.com/p/selenium/downloads/detail?name=selenium-server-standalone-2.35.0.jar&can=2&q=