5

我正在运行基于RSelenium Basics CRAN 页面的以下脚本:

library(RSelenium)
startServer(args = c("-port 4455"), log = FALSE, invisible = FALSE)
remDr <- remoteDriver(browserName = "chrome")
remDr$open()

这会产生以下错误:

Exception in thread "main" java.net.BindException: Selenium is already running on port 4444. Or some other service is.
 at org.openqa.selenium.server.SeleniumServer.start(SeleniumServer.java:492)
 at org.openqa.selenium.server.SeleniumServer.boot(SeleniumServer.java:305)
 at org.openqa.selenium.server.SeleniumServer.main(SeleniumServer.java:245)
 at org.openqa.grid.selenium.GridLauncher.main(GridLauncher.java:64)

根据GitHub 上此对话的评论,我修改了我的startServer()命令,如下所示:

startServer(args = c("-port 4455"), log = FALSE, invisible = FALSE)

然后我在控制台中收到以下错误:

Error:   Summary: UnknownError
 Detail: An unknown server-side error occurred while processing the command.
 class: java.lang.IllegalStateException

并且在弹出的Java提示中出现这个错误:

14:38:55.098 INFO - Launching a standalone Selenium Server
14:38:55:161 INFO - Java: Oracle Corporation 25.40-b25
14:38:55.161 INFO - OS: Windows 7 6.1 amd64
14:38:55.161 INFO - v2.46.0, with Core v2.46.0. Built from revision 87c69e2
14:38:55.209 INFO - Driver class not found: com.opera.core.systems.OperaDriver
14:38:55.209 INFO - Driver provider com.opera.core.systems.OperaDriver is not registered
14:38:55:289 INFO - RemoteWebDriver instances should connect to: http://127.0.0.1:4455/wd/hub
14:38:55:289 INFO - Selenium Server is up and running

我不确定缺少 Opera 驱动程序是实际错误还是警告。无论如何,我想使用 Chrome,所以这似乎无关紧要。我究竟做错了什么?

4

2 回答 2

9

通过将来自多个不同来源的信息拼凑在一起,我终于能够让 RSelenium 工作。我认为将所有这些信息放在一个位置会很有帮助,所以这是我通过 Chrome 作为浏览器让 RSelenium 在 Windows 7(64 位)上工作的过程:

  1. 下载64 位版本的 Java 我无法使用标准下载获得任何东西。
  2. 下载Chrome 驱动程序
  3. 下载Selenium 独立服务器checkForServer()从 R运行。
  4. 创建一个批处理文件来启动 Selenium 服务器。 我最初尝试startServer()从 R 脚本中使用,但它经常会卡住并且不会继续到脚本的下一行。这是我创建的批处理文件:

    java -jar C:\path\to\selenium-server-standalone.jar -Dwebdriver.chrome.driver=C:\path\to\chromedriver.exe
    

    ChromeDriver 可以放在 PATH 环境变量中,但我决定将 ChromeDriver 的路径添加到批处理文件中(实现相同的目标)。

  5. 运行 R 脚本。 这是我的最终脚本:

    library(RSelenium)
    shell.exec(paste0("C:\\path\\to\\yourbatchfile.bat"))
    Sys.sleep(5)
    
    remDr <- remoteDriver(browserName = "chrome")
    remDr$open(silent = TRUE)
    remDr$navigate("http://www.google.com")
    

    调用是必要的,因为如果它在 Selenium 服务器完成启动之前运行,我会在调用中Sys.sleep()收到错误。remoteDriver()

于 2015-07-02T15:16:08.500 回答
1

值得注意的是,RSelenium 对于 OSX 有一些令人讨厌的差异。当您分别运行 yourcommand.command 文件和 remDr$open() 方法时,invisible=T/silent=T 参数将不起作用。invisible=T 实际上会提醒您它仅适用于 Windows。没什么大不了的(如果有人有解决方法,我会很感激)。

为了后代的缘故,OSX 使用 .command 文件而不是具有与上述相同内容的 .bat 替换 shell.exec 略有不同:

yourcommand.command 文件内容

java -jar /path/to/selenium-server-standalone.jar -Dwebdriver.chrome.driver=/path/to/chromedriver

R脚本修改

library(RSelenium)
system(paste("open","/path/to/yourcommand.command"))
Sys.sleep(5)
...
于 2016-05-19T18:41:55.440 回答