【发布时间】:2019-01-17 01:26:13
【问题描述】:
我已经在我的 MacOS 上下载了 Selenium 和 Chromedriver,但似乎无法在我的 IDLE Python Shell 上执行:
driver = webdriver.Chrome()
错误信息返回:
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/selenium/webdriver/common/service.py", line 76, in start
stdin=PIPE)
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py", line 756, in __init__
restore_signals, start_new_session)
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py", line 1499, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver': 'chromedriver'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
driver = webdriver.Chrome()
File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-
packages/selenium/webdriver/chrome/webdriver.py", line 68, in __init__
self.service.start()
File
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/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: 'chromedriver'
executable needs to be in PATH. Please see
https://sites.google.com/a/chromium.org/chromedriver/home
我试图通过将 Chromedriver 放置在 usr/local/bin 中并将其放置在所附图像中的 selenium 文件夹中来将其设置在正确的路径中。但是,我不确定它是否在正确的位置,因为仍然会出现相同的错误。
我将如何解决这个问题?
非常感谢!
【问题讨论】:
标签: python macos selenium selenium-chromedriver