Windows10にてPythonでSeleniumを使ってWebスクレイピングをしたいのですが、ChromeDriverを使うところでエラーが発生してしまいます。
解決法についてご教示いただけますと幸いです。
該当のソースコード
Python
1from selenium import webdriver 2import time 3import pandas as pd 4import os 5import datetime 6 7 8#Google Chromeを起動 9browser = webdriver.Chrome(executable_path = "C:/Users/k1118/Desktop/Mypandas/chromedriver.exe")
発生している問題・エラーメッセージ
--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) /srv/conda/envs/notebook/lib/python3.7/site-packages/selenium/webdriver/common/service.py in start(self) 75 stderr=self.log_file, ---> 76 stdin=PIPE) 77 except TypeError: /srv/conda/envs/notebook/lib/python3.7/subprocess.py in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, encoding, errors, text) 799 errread, errwrite, --> 800 restore_signals, start_new_session) 801 except: /srv/conda/envs/notebook/lib/python3.7/subprocess.py in _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session) 1550 err_msg += ': ' + repr(err_filename) -> 1551 raise child_exception_type(errno_num, err_msg, err_filename) 1552 raise child_exception_type(err_msg) FileNotFoundError: [Errno 2] No such file or directory: 'C:/Users/k1118/Desktop/Mypandas/chromedriver.exe': 'C:/Users/k1118/Desktop/Mypandas/chromedriver.exe' During handling of the above exception, another exception occurred: WebDriverException Traceback (most recent call last) <ipython-input-16-8ada402d7eef> in <module> 1 #Google Chromeを起動 ----> 2 browser = webdriver.Chrome(executable_path = "C:/Users/k1118/Desktop/Mypandas/chromedriver.exe") 3 browser.implicitly(3) /srv/conda/envs/notebook/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py in __init__(self, executable_path, port, options, service_args, desired_capabilities, service_log_path, chrome_options, keep_alive) 71 service_args=service_args, 72 log_path=service_log_path) ---> 73 self.service.start() 74 75 try: /srv/conda/envs/notebook/lib/python3.7/site-packages/selenium/webdriver/common/service.py in start(self) 81 raise WebDriverException( 82 "'%s' executable needs to be in PATH. %s" % ( ---> 83 os.path.basename(self.path), self.start_error_message) 84 ) 85 elif err.errno == errno.EACCES: WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
試したこと
-
エラーメッセージの最終行にexecutable needs to be in PATH.という文言があったため、raw文字列を利用してもできず。\でなく\としても同じエラーが発生してしましました。
-
chromedriver_binaryのインストール
→解決せず
補足情報(FW/ツールのバージョンなど)
Chrome driverのバージョンは使用しているChromeと同一です。(ChromeDriver 86.0.4240.22)
Windows10
Jupyternotebook