前提・実現したいこと
MacでVScodeを利用し、Chromeを開く処理を行おうとする所、下記エラーが発生してしまいます。
下記「https://sites.google.com/a/chromium.org/chromedriver/home
」サイトより、「ChromeDriver 81.0.4044.20」→「chromedriver_mac64.zip」をダウンロードし、カレントディレクトリへ格納したのですが、下記エラーメッセージが表示される状況となります。
※カレントディレクトリは、「os.getcwd()」で調べています。
何が原因となっているのか。お分かりの方がいればご教示いただけますと幸いです。
何卒宜しくお願い致します。
発生している問題・エラーメッセージ
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3 /Users/name/python/chrome_read.py Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/common/service.py", line 72, in start self.process = subprocess.Popen(cmd, env=self.env, File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/subprocess.py", line 854, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/subprocess.py", line 1702, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'chromedriver' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/name/python/chrome_read.py", line 3, in <module> driver = webdriver.Chrome() File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__ self.service.start() File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/common/service.py", line 81, in start raise WebDriverException( selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
該当のソースコード
Python
1from selenium import webdriver 2 3driver = webdriver.Chrome() 4driver.get("https://qiita.com/kinpira/items/383b0fbee6bf229ea03d") 5driver.close() 6driver.quit()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/17 04:01 編集
2020/03/17 04:12
2020/03/17 12:05