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
  • 15,819
  • 3
  • 24
  • 37

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
  • 742
  • 1
  • 6
  • 15
Aegis
  • 21
  • 4