如何在RSelenium中运行chrome浏览器

时间:2017-03-15 14:51:16

标签: r selenium rselenium

我的OP是Windows。

我已安装RSelenium,我想打开Chrome浏览器(RSelenium中的默认浏览器是Firefox)

我已从here和最新版本的selenium独立服务器下载了Google Chrome驱动程序,我在命令行中使用java -jar selenium-server-standalone-3.3.1.jar命令行运行它

之后在RStudio中运行:

startServer()
checkForServer()
mybrowser <- remoteDriver(browserName = "chrome")
mybrowser$open()

但它堆叠在:

[1] "Connecting to remote server"

它不会给出任何错误。知道如何打开和使用Chrome浏览器?可以使用我系统的chrome吗?

1 个答案:

答案 0 :(得分:0)

尝试这个应该是工作添加selenium-server-standalone-3.3.1.jar作为外部jar文件,**右键单击project-&gt; properties-&gt; java build path-&gt; libraries-&gt;添加外部jar。**并更新项目并添加设置

WebDriver driver = new ChromeDriver();