使用python-selenium包时出错

时间:2016-12-06 14:17:16

标签: python selenium webdriver

我正在尝试使用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. 

1 个答案:

答案 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添加到系统路径中。并且,在新的控制台中运行您的脚本。