"当时一切都好多了......#/ p>
因为firefox 49(?)你不能再使用rselenium软件包了。我在整个互联网上搜索了一个 SIMPLE 如何手动设置rselenium但没有找到任何相关和最新的。
有人可以提供我和其他所有不知道简单操作指南的人吗?像:
所以我可以运行如下代码
require(RSelenium)
remDr <- remoteDriver(remoteServerAddr = "localhost", port = 4444L,
browserName = "firefox")
remDr$open()
答案 0 :(得分:7)
下载RSelenium >= 1.7.1
的最新版本。运行以下命令:
library(RSelenium)
rD <- rsDriver() # runs a chrome browser, wait for necessary files to download
remDr <- rD$client
# no need for remDr$open() browser should already be open
如果您希望Firefox浏览器使用rsDriver(browser = "firefox")
。
详见http://rpubs.com/johndharrison/RSelenium-Basics附录。但是,推荐的运行RSelenium的方法是通过Docker容器。有关使用RSelenium的Docker的说明,请访问http://rpubs.com/johndharrison/RSelenium-Docker
的问题:
如果由于管理员权限或其他变量(如防病毒软件)而出现问题,您可以手动运行Selenium服务器。最简单的方法是通过wdman
包:
selCommand<-
wdman::selenium(jvmargs = c("-Dwebdriver.chrome.verboseLogging=true"),
retcommand = TRUE)
> cat(selCommand)
C:\PROGRA~3\Oracle\Java\javapath\java.exe -Dwebdriver.chrome.verboseLogging=true -Dwebdriver.chrome.driver="C:\Users\john\AppData\Local\binman\binman_chromedriver\win32\2.27/chromedriver.exe" -Dwebdriver.gecko.driver="C:\Users\john\AppData\Local\binman\binman_geckodriver\win64\0.14.0/geckodriver.exe" -Dphantomjs.binary.path="C:\Users\john\AppData\Local\binman\binman_phantomjs\windows\2.1.1/phantomjs-2.1.1-windows/bin/phantomjs.exe" -jar "C:\Users\john\AppData\Local\binman\binman_seleniumserver\generic\3.0.1/selenium-server-standalone-3.0.1.jar" -port 4567
使用启用了wdman
选项的retcommand
函数之一将返回
已经运行的命令行调用。
现在您可以在终端
中运行cat(selCommand)的输出C:\Users\john>C:\PROGRA~3\Oracle\Java\javapath\java.exe -Dwebdriver.chrome.verboseLogging=true -Dwebdriver.chrome.driver="C:\Users\john\AppData\Local\binman\binman_chromedriver\win32\2.27/chromedriver.exe" -Dwebdriver.gecko.driver="C:\Users\john\AppData\Local\binman\binman_geckodriver\win64\0.14.0/geckodriver.exe" -Dphantomjs.binary.path="C:\Users\john\AppData\Local\binman\binman_phantomjs\windows\2.1.1/phantomjs-2.1.1-windows/bin/phantomjs.exe" -jar "C:\Users\john\AppData\Local\binman\binman_seleniumserver\generic\3.0.1/selenium-server-standalone-3.0.1.jar" -port 4567
12:15:29.206 INFO - Selenium build info: version: '3.0.1', revision: '1969d75'
12:15:29.206 INFO - Launching a standalone Selenium Server
2017-02-08 12:15:29.223:INFO::main: Logging initialized @146ms
12:15:29.265 INFO - Driver class not found: com.opera.core.systems.OperaDriver
12:15:29.265 INFO - Driver provider com.opera.core.systems.OperaDriver registration is skipped:
Unable to create new instances on this machine.
12:15:29.265 INFO - Driver class not found: com.opera.core.systems.OperaDriver
12:15:29.266 INFO - Driver provider com.opera.core.systems.OperaDriver is not registered
12:15:29.271 INFO - Driver provider org.openqa.selenium.safari.SafariDriver registration is skipped:
registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform WIN10
2017-02-08 12:15:29.302:INFO:osjs.Server:main: jetty-9.2.15.v20160210
2017-02-08 12:15:29.317:INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@c4c815{/,null,AVAILABLE}
2017-02-08 12:15:29.332:INFO:osjs.ServerConnector:main: Started ServerConnector@4af044{HTTP/1.1}{0.0.0.0:4567}
2017-02-08 12:15:29.333:INFO:osjs.Server:main: Started @257ms
12:15:29.334 INFO - Selenium Server is up and running
现在尝试运行浏览器
remDr <- remoteDriver(port = 4567L, browserName = "chrome")
remDr$open()
如果您无法手动运行Selenium Server,那么您需要解决您的问题(包括相关日志文件)到Selenium项目或相应的驱动程序项目(chromedriver / geckodriver / ghostdirver等)。
答案 1 :(得分:0)
在终端中运行docker pull selenium/standalone-chrome-debug
(对于Windows,则运行cmd)
在Rs控制台中,转到:
install.packages("RSelenium")
library(RSelenium)
remDr <- remoteDriver(
remoteServerAdd = "localhost",
port = 4445L,
browser = "chrome"
)
remDr$open()
每次您要RSelenium工作时,都需要像上述步骤3和5一样运行Docker容器。
这些步骤还允许您使用VNC观察发生的情况并进行调试。如果您需要了解一些内容,请转到https://www.realvnc.com/pt/connect/download/viewer/,更多细节不在本主题的讨论范围之内。
好吧,我认为这可以带您进入一个点,您现在可以按照RSelenium基本用法插图的这些说明进行操作:https://cran.r-project.org/web/packages/RSelenium/vignettes/basics.html
您还应该阅读有关裸露端口的安全性以及如何处理它。 R Consortium的这些视频可能会帮助您: https://www.youtube.com/watch?v=OxbvFiYxEzI和https://www.youtube.com/watch?v=JcIeWiljQG4
我希望它能像您早些时候对我的帮助一样对您有所帮助。