2017-10-15 18 views
-3

プログラムを構築するためにセレンを使用しようとしましたが、Webドライバをサポートしていません。次のエラーが表示されます。PythonでSeleniumを使用する際にエラーが発生しました

Traceback (most recent call last): 


File "C:\Users\my dell\AppData\Local\Programs\Python\Python36-32\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start 
    stdout=self.log_file, stderr=self.log_file) 
    File "C:\Users\my dell\AppData\Local\Programs\Python\Python36-32\lib\subprocess.py", line 707, in __init__ 
    restore_signals, start_new_session) 
    File "C:\Users\my dell\AppData\Local\Programs\Python\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:\Users\my dell\AppData\Local\Programs\Python\Python36-32\records\sel.py", line 2, in <module> 
    browser = webdriver.Chrome() 
    File "C:\Users\my dell\AppData\Local\Programs\Python\Python36-32\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 62, in __init__ 
    self.service.start() 
    File "C:\Users\my dell\AppData\Local\Programs\Python\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 

助けていただければ幸いです。

+1

へ行く:https://sites.google.com/a/chromium.org/chromedriver/home、 –

答えて

1

chromechromedriverをインストールする必要があるようです。 DebianのLinux用

:まあ、それは文字通りあなたに伝え

apt install chromium 
wget https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip 
unzip chromedriver_linux64.zip 
sudo cp chromedriver /usr/bin/ 
関連する問題