Getting started with RSelenium

Hello,

Can anyone help me getting started with RSelenium?

I installed and enabled the package with:

install.packages("RSelenium")
library(RSelenium)

And installed RSelenium server on my machine with:

java -jar selenium-server-standalone-3.141.59.jar

It all seems ok, but I can't connect to the remote server:

This is ok:

remDr <- remoteDriver(
  remoteServerAddr = "localhost",
  port = 4444,
  browserName = "firefox"
)

But this:

remDr$open()

Returns the error:

Selenium message:Unable to create new service: GeckoDriverService
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info: host: 'LAPTOP-E3D51SKN', ip: '192.168.0.100', os.name: 'Windows 10', os.arch: 'x86', os.version: '10.0', java.version: '1.8.0_281'
Driver info: driver.version: unknown

Error: 	 Summary: SessionNotCreatedException
 	 Detail: A new session could not be created.
	 Further Details: run errorDetails method
> 
1 Like

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.