私は退屈なものを自動化し始めています。私はPythonでクロームWebブラウザを開こうとしています。あなたのパスを指定しPython Selenium Chrome Webdriver
Traceback (most recent call last): File "C:\Program Files (x86)\Python36-32\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start stdout=self.log_file, stderr=self.log_file) File "C:\Program Files (x86)\Python36-32\lib\subprocess.py", line 707, in init restore_signals, start_new_session) File "C:\Program Files (x86)\Python36-32\lib\subprocess.py", line 990, in _execute_child startupinfo) FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "C:/Program Files (x86)/Python36-32/test.py", line 5, in browser = webdriver.Chrome() File "C:\Program Files (x86)\Python36-32\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 62, in init self.service.start() File "C:\Program Files (x86)\Python36-32\lib\site-packages\selenium\webdriver\common\service.py", line 81, 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
トレースバックはすでに問題を示しています:あなたのpythonコードはPATHに見つからないので 'chromedriver'を実行できません。 'chromedriver'の場所をPATHに追加するか、' chromedriver'を既にPATHにある場所に移動してください。 – fragmentedreality