我无法解决这个问题。我通过下面的地址尝试了我能找到的所有解决方案,但问题没有解决。请帮帮我。
Chromedriver:";FileNotFoundError:[WinError 2]系统找不到指定的文件";错误
程序:
from selenium import webdriver
driver = webdriver.Chrome("C:chromedriverchromedriver.exe")
url = 'https://www.naver.com'
driver.get(url)
错误:
Traceback (most recent call last):
File "/home/jsbang/.local/lib/python3.6/site-packages/selenium/webdriver/common/service.py", line 76, in start
stdin=PIPE)
File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
restore_signals, start_new_session)
File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'C:\chromedriver\chromedriver.exe': 'C:\chromedriver\chromedriver.exe'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "modu_pers_auto.py", line 21, in <module>
driver = webdriver.Chrome(chrome_options=options, executable_path=r"C:chromedriverchromedriver.exe", )
File "/home/jsbang/.local/lib/python3.6/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__
self.service.start()
File "/home/jsbang/.local/lib/python3.6/site-packages/selenium/webdriver/common/service.py", line 83, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'C:chromedriverchromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
如果您的可执行文件真的在那里,您应该给出有效的路径:
("C:\chromedriver\chromedriver.exe")
或
("C:/chromedriver/chromedriver.exe")