Sorry, I didn't see the latest reply on the other thread.
I came across the same problem and used the following issue #156 to fix the problem.
The path to firefox must be specified (I'm unsure of the reasoning behind this), but on my local machine the location of the firefox.exe is: C:/Program Files (x86)/Mozilla Firefox/firefox.exe. To get Rselenium server to register the path, use the following code:
rs <- rsDriver(
browser = "firefox",
extraCapabilities = list(
`mox:firefoxOptions` = list(
binary = "C:/Program Files (x86)/Mozilla Firefox/firefox.exe"
)
)
)
Double check the location of firefox on your system it might be located in Program Files/... instead.