简体   繁体   中英

FileNotFoundError: [WinError 3] The system cannot find the path specified:...chromedriver.exe

I am trying to use selenium for my project when I run my python file which contains the following codes , I get an error written just below the file code.

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager

driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get('https://google.com')

**

[WDM] - Current google-chrome version is 85.0.4183 [WDM] - Get LATEST driver version for 85.0.4183 [WDM] - Driver [C:\\Users\\AHG.wdm\\drivers\\chromedriver\\win32\\85.0.4183.87\\chromedriver.exe] found in cache Traceback (most recent call last): File "newWeb.py", line 9, in driver = webdriver.Chrome(ChromeDriverManager().install()) File "C:\\Anaconda3\\envs\\ppp_web\\lib\\site-packages\\webdriver_manager\\chrome.py", line 34, in install os.chmod(driver_path, 0o755) FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\\Users\\ppp\\.wdm\\drivers\\chromedriver\\win32\\85.0.4183.87\\chromedriver.exe'

**

could anyone help me how to solve this issue.

I had the same problem once. I have to download the ChromeDriver and connect it to an absolute path.

driver = webdriver.Chrome(r "C:\Users\Normal\Desktop\WebCrawler\chromedriver_win32\chromedriver.exe")

You can download the driver from the web. For example: https://chromedriver.chromium.org/downloads

I have had the same issue

in my issue, I solved when ı delete drivers.json and drivers file inside of "C:\\Users\\ppp\\.wdm"

installed drivers have inside of drivers.json .but sometimes something can delete driver but not delete inside of drivers.json ChromeDriverManager().install() opens drivers.json file. and that gets the last installed chrome driver path from the driver.json . the driver uses from there if it is the last version. when the driver uses from this path but there is no file. it causes this problem

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM