1

My chromedriver and chrome app are the same up to date version, but the tab still just opens to "data" in the URL bar

driver = webdriver.Chrome(executable_path="C:\\Windows\\chromedriver.exe")

driver.get("https://google.com")
Chris
  • 12,661
  • 3
  • 20
  • 33

1 Answers1

0

Driver instance can be simply:

driver = webdriver.Chrome(r'path\to\chromedriver.exe')

Is chrome and driver at last version?

The syntax is ok, try to change chromedriver path.

DNy
  • 562
  • 4
  • 14
Aegis
  • 21
  • 4