繁体   English   中英

Chromedriver:“FileNotFoundError:[Errno 2] 没有这样的文件或目录:”错误

[英]Chromedriver: “FileNotFoundError: [Errno 2] No such file or directory:” Error

我无法解决这个问题。 我尝试了通过以下地址找到的所有解决方案,但问题没有解决。 请帮我。

Chromedriver:“FileNotFoundError:[WinError 2] 系统找不到指定的文件”错误

程序:

from selenium import webdriver

driver = webdriver.Chrome("C:\chromedriver\chromedriver.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:\chromedriver\chromedriver.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:\chromedriver\chromedriver.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")

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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