R RSelenium / seleniumPipes Неизвестная ошибка: не удается найти двоичный файл Chrome - PullRequest
0 голосов
/ 09 апреля 2019

Я пытаюсь подключиться к Selenium в R с помощью браузера Chrome на Win10.

Я установил Chrome 74.0.3729.61 и добавил путь chrome.exe к переменным среды.

devtools::install_github("johndharrison/seleniumPipes")
devtools::install_github("ropensci/Rselenium")

#start selenium
selServ <- selenium()
# check ports
selServ$log()$stderr 
# conect using port
sel <- remoteDr(browserName = "chrome", port = 4567)

выдает следующее сообщение об ошибке:

Called  newSession  - Try no:  1  of  3 

Called  newSession  - Try no:  2  of  3 

Called  newSession  - Try no:  3  of  3 
Error detected:
Response status code : 500 
Selenium Status code:  13 
Selenium Status summary:  UnknownError 
Selenium Status detail:  An unknown server-side error occurred while processing the command. 
Selenium message:  unknown error: cannot find Chrome binary
  (Driver info: chromedriver=74.0.3729.6 (255758eccf3d244491b8a1317aa76e1ce10d57e9-refs/branch-heads/3729@{#29}),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 40 milliseconds
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: ... , os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_201'
Driver info: driver.version: unknown 
Please check the response with errorResponse()
Please check the content returned with errorContent()

Я нашел некоторые рекомендации для Python ( Не удается найти двоичный файл Chrome с Selenium в Python для более старых версий Google Chrome ) и c # ( Selenium WebDriver - Не удалось найти бинарный файл Chrome ), однако я не знаю, как реализовать его в R.

...