RSelenium 错误驱动程序问题? [英] RSelenium error driver issues?

查看:47
本文介绍了RSelenium 错误驱动程序问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当尝试运行 RSelenium 示例以尝试执行一些网页抓取时,我在尝试打开服务器时收到以下错误消息...我不确定问题是什么...

When trying to run the RSelenium examples to try and carry out some webscraping I get the following error message when trying to open up the server...I'm not sure what the issue is...

library(RSelenium)
startServer()

# use default server initialisation values
remDr <- remoteDriver$new()

# send request to server to initialise session
remDr$open()

[1] "Connecting to remote server"
$message
[1] "GET /session/\nBuild info: version: '2.42.0', revision: '5e82430', time: '2014-05-22 20:18:07'\nSystem info: host: 'xxxxx-PC', ip: 'xx.xxx.xx.xx', os.name: 'Windows 8.1', os.arch: 'amd64', os.version: '6.3', java.version: '1.7.0_60'\nDriver info: driver.version: unknown"

$localizedMessage
[1] "GET /session/\nBuild info: version: '2.42.0', revision: '5e82430', time: '2014-05-22 20:18:07'\nSystem info: host: 'xxxx-PC', ip: 'xx.xxx.xx.xx', os.name: 'Windows 8.1', os.arch: 'amd64', os.version: '6.3', java.version: '1.7.0_60'\nDriver info: driver.version: unknown"

$suppressed
list()

$cause
NULL

$systemInformation
[1] "System info: host: 'xxxxx-PC', ip: 'xx.xx.xx.xx', os.name: 'Windows 8.1', os.arch: 'amd64', os.version: '6.3', java.version: '1.7.0_60'"

$supportUrl
NULL

$class
[1] "org.openqa.selenium.UnsupportedCommandException"

$additionalInformation
[1] "\nDriver info: driver.version: unknown"

$hCode
[1] 142976762

然后是一些stackTrace信息,都是NULL

Then there are some stackTrace info, all of which are NULL

有关如何解决此问题的任何想法?

Any ideas on how to solve this issue?

此外,在尝试运行演示时,我遇到了以下问题...(但认为这是因为 RSelenium::startServer() 没有先运行)

Also when trying to run a demo I get the following issue...(but think its because RSelenium::startServer() wasnt run first)

> demo(selExecJSexample)


demo(selExecJSexample)
---- ~~~~~~~~~~~~~~~~

  Type  <Return>     to start : 

  > # see http://stackoverflow.com/questions/22121006/how-to-scrape-this-squawka-page/22127054#22127054
  > # RSelenium::startServer() # if needed
  > require(RSelenium)

> remDr <- remoteDriver()

> remDr$open()
[1] "Connecting to remote server"
Error in function (type, msg, asError = TRUE)  : couldn't connect to host

推荐答案

这是 selenium 发布周期与 firefox 发布周期略微不同步的问题.http://selenium-release.storage.googleapis.com/index.html现在包含更新的 Selenium 服务器(当前版本 2.43.0).使用 update = TRUE 运行 RSelenium::checkForServer 将在本地更新 Selenium 服务器,并且最新的 firefox 应该可以运行:

This was an issue with the selenium release cycle being slightly out of sync with the firefox release cycle. http://selenium-release.storage.googleapis.com/index.html now contains an updated Selenium Server (currently version 2.43.0). Running RSelenium::checkForServer with update = TRUE will update the Selenium Server locally and the most recent firefox should function:

> library(RSelenium)
> checkForServer(update = TRUE)
[1] "DOWNLOADING STANDALONE SELENIUM SERVER. THIS MAY TAKE SEVERAL MINUTES"
trying URL 'http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar'
Content type 'application/x-java-archive' length 34932130 bytes (33.3 Mb)
opened URL
downloaded 33.3 Mb

> remDr <- remoteDriver()
> startServer()
> remDr$open()
[1] "Connecting to remote server"
$platform
[1] "WINDOWS"

$acceptSslCerts
[1] TRUE

$javascriptEnabled
[1] TRUE

$browserName
[1] "firefox"

$rotatable
[1] FALSE

$locationContextEnabled
[1] TRUE

$webdriver.remote.sessionid
[1] "a2eee1ff-d9fd-41ce-ac0e-e11ce24cb516"

$version
[1] "32.0"

$cssSelectorsEnabled
[1] TRUE

$databaseEnabled
[1] TRUE

$handlesAlerts
[1] TRUE

$webStorageEnabled
[1] TRUE

$nativeEvents
[1] TRUE

$applicationCacheEnabled
[1] TRUE

$takesScreenshot
[1] TRUE

$id
[1] "a2eee1ff-d9fd-41ce-ac0e-e11ce24cb516"

运行 remDr$getStatus() 应该显示一切都是最新的:

Running remDr$getStatus() should show everything is uptodate:

> remDr$getStatus()
$os
$os$arch
[1] "amd64"

$os$name
[1] "Windows 8.1"

$os$version
[1] "6.3"


$java
$java$version
[1] "1.7.0_67"


$build
$build$revision
[1] "597b76b"

$build$time
[1] "2014-09-09 20:52:14"

$build$version
[1] "2.43.0"

这篇关于RSelenium 错误驱动程序问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆