Skip to content Skip to sidebar Skip to footer

Why Isn't The 'chromedriver' Executable In The Path Even After Using Chromedrivermanager Through Selenium And Python

I'm trying to click the 'Launch Earth' button with this block of code. from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.C

Solution 1:

You were close. As you have used:

driver = webdriver.Chrome(ChromeDriverManager().install())

The cached / downloadedChromeDriver will be used to initiate a new Browsing Context.

So you need to remove the second instance of driver = webdriver.Chrome()

Post a Comment for "Why Isn't The 'chromedriver' Executable In The Path Even After Using Chromedrivermanager Through Selenium And Python"