Reputation: 137
I have a problem oppenning firefox with RSelenium on R on my mac.
When I put:
remDr <- rsDriver(browser = "firefox", port=4443L)$client
I get this answer
checking Selenium Server versions:
BEGIN: PREDOWNLOAD
BEGIN: DOWNLOAD
BEGIN: POSTDOWNLOAD
checking chromedriver versions:
BEGIN: PREDOWNLOAD
BEGIN: DOWNLOAD
BEGIN: POSTDOWNLOAD
checking geckodriver versions:
BEGIN: PREDOWNLOAD
BEGIN: DOWNLOAD
BEGIN: POSTDOWNLOAD
checking phantomjs versions:
BEGIN: PREDOWNLOAD
BEGIN: DOWNLOAD
BEGIN: POSTDOWNLOAD
[1] "Connecting to remote server"
Could not open firefox browser.
Client error message:
Undefined error in httr call. httr output: Failed to connect to localhost port 4443: Connection refused
Check server log for further details.
Warning message:
In rsDriver(browser = "firefox", port = 4443L) :
Could not determine server status.
Firefox page does not open.
Is there anyone knowing what might be the problem?
Upvotes: 1
Views: 952
Reputation: 59
Above didn't work for me and this problem drove me crazy for 2 days :( Here's finally what worked for me:
After this, you should be set.
Upvotes: 0
Reputation: 137
For everyone who might be in a similar situation, I finally managed to solve this issue by installing Java SE Development Kit 14 on my Mac.
I did not close the post because I thought it might help someone else.
Upvotes: 1