我正在尝试使用selenium包连接到Web浏览器的基本python脚本。显示的错误日志如下所示。
Traceback (most recent call last):
File "F:\WinPython\WinPython-64bit-3.5.2.3Qt5\python-3.5.2.amd64\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start
stdout=self.log_file, stderr=self.log_file)
File "F:\WinPython\WinPython-64bit-3.5.2.3Qt5\python-3.5.2.amd64\lib\subprocess.py", line 947, in __init__
restore_signals, start_new_session)
File "F:\WinPython\WinPython-64bit-3.5.2.3Qt5\python-3.5.2.amd64\lib\subprocess.py", line 1224, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
在处理上述异常期间,发生了另一个异常:
Traceback (most recent call last):
File "F:/WinPython/WinPython-64bit-3.5.2.3Qt5/python-3.5.2.amd64/py_codes/python_org_search.py", line 4, in <module>
driver = webdriver.Firefox()
File "F:\WinPython\WinPython-64bit-3.5.2.3Qt5\python-3.5.2.amd64\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 140, in __init__
self.service.start()
File "F:\WinPython\WinPython-64bit-3.5.2.3Qt5\python-3.5.2.amd64\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 :(得分:0)
从geckodriver
开始,您需要将geckodriver.exe
添加到系统路径中,更具体地说,应将包含cmd.exe
的文件夹添加到系统路径中。
为此,请以管理员身份运行setx path "%path%;C:\Path\to\geckodriver.exe\;"
并运行以下命令:
C:\Path\to\geckodriver.exe\
将geckodriver.exe
替换为包含exe
修改强>
您可以从此处https://github.com/mozilla/geckodriver/releases下载C:\geckodriver
文件,将其解压缩到某处,让我们说C:\geckodriver\geckodriver.exe
。现在,您拥有类似C:\geckodriver
的文件,并且需要将htdocs
添加到系统路径中。并且,在新的控制台中运行您的脚本。