I have the code:
startServer(args = c("-port 4456"), log = FALSE, invisible = FALSE)
selServ <- startServer(args = c("-port 4456", "-Dwebdriver.chrome.driver=C:/Drivers/chromedriver"), log = TRUE)
remDr <- remoteDriver(browserName="chrome", port=4456)
remDr$open()
I have the latest Chrome driver in C:\Drivers\chromedriver.exe.
When I run the code, the server starts but I get the unhappy Chrome face and error
The same driver works with my Python and C# scripts but they are using WebDriver.
Does anyone know what could be causing this error or how to use WebDriver with R?