WebDriverException:消息:'geckodriver'可执行文件需要位于PATH

时间:2016-10-22 05:34:40

标签: python selenium

os:windows 7 硒3.0.1版 mozilla firefox:48.0.2

Traceback (most recent call last):
  File "C:\Users\LENOVO\Desktop\kk2.py", line 4, in <module>
  driver = webdriver.Firefox()
  File "C:\Python27\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 135, in __init__
  self.service.start()
  File "C:\Python27\lib\site-packages\selenium\webdriver\common\service.py", line 71, in start
  os.path.basename(self.path), self.start_error_message)
  WebDriverException: Message: 'geckodriver' executable needs to be in PATH. 

请一步一步地提供信息,请实际上我是学习者

5 个答案:

答案 0 :(得分:16)

对于基于Linux的系统,请下载geckodriver。解压缩并将驱动程序复制到/ usr / local / bin,最后使其可执行(chmod + x geckodriver)。

答案 1 :(得分:6)

请检查答案:

https://stackoverflow.com/a/37765661

https://stackoverflow.com/a/40208762

不久,

从selenium 3.0开始,您必须明确下载Firefox Marionette geckodriver(类似于ChromeDriver for Chrome)并将其保存在系统可识别的地方。 (如系统路径 - Windows中的环境变量)或指定使用语言选项。

参考文献:

  1. Download Marionette GeckoDriver
  2. https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette/WebDriver
  3. https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette

答案 2 :(得分:2)

对于mac用户,请使用:

brew install geckodriver

答案 3 :(得分:2)

我只需下载Gecko文件并粘贴到你的python文件所在的位置。它解决了这个问题!

答案 4 :(得分:0)

Linux(Ubuntu)用户应下载geckodriver并将其解压缩到项目文件夹中,然后在运行python脚本时将参数指定为

executable_path="./geckodriver"

示例:

from selenium import webdriver

class RunFFTests():

    def testMethod(self):
        # Initiate the driver instance
        driver = webdriver.Firefox(
            executable_path="./geckodriver")

        driver.get("http://www.letskodeit.com")

ff = RunFFTests()
ff.testMethod()