0

When I run code on a new computer, with windows7, using Python3, I get an error immediately when calling

driver = webdriver.Chrome()

The error is :

WebDriverException: unknown error: unable to discover open pages (Driver info: chromedriver=2.4.226107,platform=Windows NT 6.1 SP1 x86_64)

Any ideas on what may be causing it?

Saurabh Gaur
  • 23,507
  • 10
  • 54
  • 73
splinter
  • 3,727
  • 8
  • 37
  • 82

1 Answers1

1

WebDriverException: unknown error: unable to discover open pages (Driver info: chromedriver=2.4.226107,platform=Windows NT 6.1 SP1 x86_64)

This is version incompatibility issue. I think you are confusing with chromedriver version. You are currently using chromeDriver v2.4 which supports Chrome browser from v29 to v32 which is very outdated.

To fix this issue you should download latest chromedriver which is currently v2.25 to support latest Chrome browser.

Saurabh Gaur
  • 23,507
  • 10
  • 54
  • 73