我正在基于RSelenium Basics CRAN page运行以下脚本:

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)

基于this conversation on 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,所以好像没关系。我究竟做错了什么?

最佳答案

通过将来自许多不同来源的信息汇总在一起,我终于能够使RSelenium正常工作。我认为将所有这些信息放在一个位置会有所帮助,因此这是我通过RSelenium在Windows 7(64位)上使用Chrome作为浏览器工作的过程:

  • 下载64-bit version of Java我无法使用标准下载进行任何操作。
  • 下载ChromeDriver
  • 下载Selenium Standalone Server或从R.运行checkForServer()
  • 创建一个批处理文件以启动Selenium服务器。 我最初尝试使用R脚本中的startServer(),但是它经常卡住并且无法继续执行脚本的下一行。这是我创建的批处理文件:
    java -jar C:\path\to\selenium-server-standalone.jar -Dwebdriver.chrome.driver=C:\path\to\chromedriver.exe
    

    可以将ChromeDriver放在PATH环境变量中,但是我决定将ChromeDriver的路径添加到批处理文件中(该文件可以实现相同的目标)。
  • 运行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")
    
    Sys.sleep()调用是必需的,因为如果在Selenium Server完成启动之前运行remoteDriver()调用,我会得到一个错误。
  • 09-12 06:40