2017-09-27 4 views
0

Auch wenn ich Geckodriver schon drin habe und meinen Computer neu starte, druckt er immer noch das selbe.Python Selenium '' geckodriver 'ausführbare Datei muss in PATH sein "

>>>from selenium import webdriver 
>>>browser = webdriver.Firefox() 
Traceback (most recent call last): 
File "D:\Python\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start 
stdout=self.log_file, stderr=self.log_file) 
File "D:\Python\lib\subprocess.py", line 707, in __init__ 
restore_signals, start_new_session) 
File "D:\Python\lib\subprocess.py", line 992, 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 "<stdin>", line 1, in <module> 
File "D:\Python\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 144, in __init__ 
self.service.start() 
File "D:\Python\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. 

Und ein Fehler davor auch! Jemand bitte helfen Sie einem Neuling heraus. Image of the Path variable

Antwort

0

Sie müssen den Pfad der ausführbaren Gecko-Treiber erwähnen. Unterhalb der Zeile erhalten Sie eine Idee.

driver=webdriver.Firefox(executable_path="add geckodriver.exe") 

Ich hoffe, dies hilft. Vielen Dank.

Verwandte Themen