2017-11-06 3 views
0

私はセレンを使用しようとしていたが、私はこのエラーを得た:私はセレンを使用しようとしていたと私はこのエラーを得た:

from selenium import webdriver browser=webdriver.Firefox() Traceback (most recent call last): File "C:\Users\academy\AppData\Local\Programs\Python\Python35\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start stdout=self.log_file, stderr=self.log_file) File "C:\Users\academy\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 950, in init restore_signals, start_new_session) File "C:\Users\academy\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 1220, 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 "", line 1, in browser=webdriver.Firefox() File "C:\Users\academy\AppData\Local\Programs\Python\Python35\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 144, in init self.service.start() File "C:\Users\academy\AppData\Local\Programs\Python\Python35\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: 'geckodriver' executable needs to be in PATH.

は、私はこれを修正するために行うには何が必要ですか?助けてください。

答えて

0

あなたのWindowsパス(そしてPythonのライブラリパスではない)に "geckodriver.exe"というファイル(Firefox用のドライバ)が必要です。

geckodriverがシェルプロンプトで実行されているかどうかを確認するには、which geckodriverまたはwhere geckodriverを調べます。

関連する問題