Two days ago I was able to use
remDr<-remoteDriver(remoteServerAddr = "localhost", port=4444, browserName = "chrome")
remDr$open()
and proceed to open chrome, navigate to a page and login to it.
Today, following the same procedure, I got this error
Selenium message:Unable to create new service: ChromeDriverService
Build info: version: '3.6.0', revision: '6fbf3ec767', time: '2017-09-27T16:15:40.131Z'
System info: host: 'ATHENALAP', ip: '*******', os.name: 'Windows 10', os.arch: 'x86', os.version: '10.0', java.version: '1.8.0_151'
Driver info: driver.version: unknown
Error: Summary: SessionNotCreatedException
Detail: A new session could not be created.
Further Details: run errorDetails method
I am using Windows 10.
I have the standalone jar file to a folder with only Latin characters, and I open Windows PowerShell and run
java -jar selenium-server-standalone-3.6.0.jar
command. This was mandatory to log in to the page.
Maybe there is a problem with the version of chromedriver? (but still, why did it happen without changing anything?)
Thank you.