4

It is showing timed out for driver server to start when I use chrome driver. And when I try to use Firefox it is showing session unexpectedly exited. I am trying to run the Remote driver on a server using selenium in python what should I do? Unable to create new session.

UnknownError: Timed out waiting for driver server to start. Build info: version: '3.141.0', revision: '2ecb7d9a', time: '2018-10-31T20:22:52' System info: host: 'server.*******.com', ip: '61.16.155.6', os.name: 'Linux', os.arch: 'amd64', os.version: '3.10.0-862.11.6.el7.x86_64', java.version: '1.8.0_201' Driver info: driver.version: unknown

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
ALOK KUMAR
  • 61
  • 1
  • 2

1 Answers1

2

This error message...

Driver info: driver.version: unknown

...implies that the ChromeDriver wasn't recognized back by the Browsing Context i.e. Chrome browser.


Solution

Ensure that:


Reference

You can find a detailed discussion on version compatibility in:

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
  • It was due to normal chrome and firefox driver which I was using. Headless browser helped me with this problem. – ALOK KUMAR Dec 24 '19 at 11:14