1. ホーム
  2. python

[解決済み] Python Selenium Chrome Webdriver [重複]について

2022-03-06 04:07:44

質問

私はつまらないことを自動化する本を始めていて、パイソンを通してクロームのウェブブラウザを開こうとしています。私はすでにseleniumをインストールし

このファイルを実行しようとしました。

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys

browser = webdriver.Chrome()
browser.get('https://automatetheboringstuff.com')

しかし、そのため、このようなエラーが発生します。

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

上記例外の処理中に、別の例外が発生しました。

Traceback (most recent call last):   File "C:/Program Files
(x86)/Python36-32/test.py", line 5, in <module>
    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

解決方法は?

必要なのは chromedriverが置かれているパスを指定する。 .

  1. クロメドライバーはこちらからダウンロードできます。 .

  2. chromedriverをシステムパス、またはコードのある場所に配置してください。

  3. システムパスを使用しない場合は chromedriver.exe (非 Windows ユーザーの場合、これは単に chromedriver ):

    browser = webdriver.Chrome(executable_path=r"C:\path\to\chromedriver.exe")
    
    

    (セット executable_path をクロメドライバーのある場所に設定してください)。

    システムパス上にchromedriverを配置した場合は、以下の操作だけでショートカットできます。

    browser = webdriver.Chrome()

  4. UnixベースのOSをお使いの場合、chromedriverをダウンロードした後、実行可能にするためにパーミッションを更新する必要がある場合があります。

    chmod +x chromedriver

  5. 以上です。まだ問題が解決しない場合は、StackOverflowのこの記事に詳細が記載されています。 Seleniumのクロームドライバーを使用できない