Guest User

Untitled

a guest
Oct 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $ docker run -d -p 4445:4444 selenium/standalone-firefox:2.53.0
  2.  
  3. $ docker ps
  4.  
  5. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  6. a89435c68373 selenium/standalone-firefox:2.53.0 "/opt/bin/entry_poin…" About an hour ago Up About an hour 0.0.0.0:4445->4444/tcp determined_sammet
  7.  
  8. remDr <- remoteDriver(port = 4445L)
  9. remDr$open()
  10.  
  11. Error in checkError(res) :
  12. Undefined error in httr call. httr output: Failed to connect to localhost port 4445: Connection refused
  13.  
  14. remDr <- remoteDriver(remoteServerAddr = "yourIP", port = 4445L)
Add Comment
Please, Sign In to add comment