gpt4 book ai didi

RSelenium 不工作

转载 作者:行者123 更新时间:2023-12-01 02:05:18 26 4
gpt4 key购买 nike

我尝试使用以下命令安装和运行 R Selenium 包的简单示例:

install.packages("RSelenium")
library("RSelenium")
startServer()
checkForServer()
startServer()
remDr <- remoteDriver(browserName = "Chrome")
remDr$open()

在我收到的最后一个代码中:
[1] "Connecting to remote server"
Error: Summary: UnknownError
Detail: An unknown server-side error occurred while processing the command.
class: org.openqa.selenium.WebDriverException

我尝试了谷歌的一些解决方法,但没有任何效果。我能做什么?

最佳答案

来自评论:

点击start选择 Control Panel > System选择 Advance system settings点击Environment Variables...
System Variables滚动至 Path并双击
Variable value:添加 ;C:\path\to\directory保存 chromedriver.exe 文件。请注意 ;分隔路径

重新启动 R session ,您现在应该可以运行:

> require(RSelenium)
RSelenium::startServer()
remDr <- remoteDriver(browserName = "chrome")
remDr$open()

编辑

要使 RSelenium 与 chrome 一起运行,您首先需要下载 chromedriver.exe你可以从 https://sites.google.com/a/chromium.org/chromedriver/downloads下载这个.下载后解压缩文件夹并将 chromedriver.exe 放在您要存储它的位置。

您存储的目录 chromedriver.exe并添加到您的系统 PATH 可以是您选择的任何位置。例如,如评论中所述,我的当前驻留在 C:\Python27\Scripts .

关于RSelenium 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33124857/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com