RSelenium with RSDriver. Error: httr output: Failed to connect to localhost port 4445: Connection refused RSelenium with RSDriver. Error: httr output: Failed to connect to localhost port 4445: Connection refused docker docker

RSelenium with RSDriver. Error: httr output: Failed to connect to localhost port 4445: Connection refused


With RSelenium version 1.7.7 this is a workaround:

library(RSelenium)remDr <- rsDriver(  port = 4445L,  browser = "firefox")

This command combines the server setup, and driver initation.