18

尝试在 ipython notebook 中使用 Selenium 打开 Firefox 时出现错误。我环顾四周,发现了类似的错误,但没有与我得到的错误完全匹配的错误。任何人都知道问题可能是什么以及我如何解决它?我正在使用 Firefox 22。

我输入的代码如下:

from selenium import webdriver
driver = webdriver.Firefox()

代码返回的错误如下:

    WindowsError                              Traceback (most recent call last)
<ipython-input-7-fd567e24185f> in <module>()
----> 1 driver = webdriver.Firefox()

C:\Anaconda\lib\site-packages\selenium\webdriver\firefox\webdriver.pyc in __init__(self, firefox_profile, firefox_binary, timeout, capabilities, proxy)
     56         RemoteWebDriver.__init__(self,
     57             command_executor=ExtensionConnection("127.0.0.1", self.profile,
---> 58             self.binary, timeout),
     59             desired_capabilities=capabilities)
     60         self._is_remote = False

C:\Anaconda\lib\site-packages\selenium\webdriver\firefox\extension_connection.pyc in __init__(self, host, firefox_profile, firefox_binary, timeout)
     45         self.profile.add_extension()
     46 
---> 47         self.binary.launch_browser(self.profile)
     48         _URL = "http://%s:%d/hub" % (HOST, PORT)
     49         RemoteConnection.__init__(

C:\Anaconda\lib\site-packages\selenium\webdriver\firefox\firefox_binary.pyc in launch_browser(self, profile)
     45         self.profile = profile
     46 
---> 47         self._start_from_profile_path(self.profile.path)
     48         self._wait_until_connectable()
     49 

C:\Anaconda\lib\site-packages\selenium\webdriver\firefox\firefox_binary.pyc in _start_from_profile_path(self, path)
     71 
     72         Popen(command, stdout=PIPE, stderr=STDOUT,
---> 73               env=self._firefox_env).communicate()
     74         command[1] = '-foreground'
     75         self.process = Popen(

C:\Anaconda\lib\subprocess.pyc in __init__(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags)
    677                             p2cread, p2cwrite,
    678                             c2pread, c2pwrite,
--> 679                             errread, errwrite)
    680 
    681         if mswindows:

C:\Anaconda\lib\subprocess.pyc in _execute_child(self, args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite)
    894                                          env,
    895                                          cwd,
--> 896                                          startupinfo)
    897             except pywintypes.error, e:
    898                 # Translate pywintypes.error to WindowsError, which is

WindowsError: [Error 2] The system cannot find the file specified
4

9 回答 9

28

初始化时尝试指定您的 Firefox 二进制文件Firefox()

from selenium import webdriver
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary

binary = FirefoxBinary('path/to/binary')
driver = webdriver.Firefox(firefox_binary=binary)

FirefoxDriver 寻找的默认路径是在%PROGRAMFILES%\Mozilla Firefox\firefox.exe. 请参阅Firefox 驱动程序

或者将 Firefox 二进制文件的路径添加到 Windows 的PATH中。

于 2013-07-10T22:24:59.340 回答
2

出现问题是因为您没有geckodriver

解决方案:

  1. 转到此网站并为您的机器下载适当的版本,确保存档中有 .exe 文件。
  2. 然后解压并复制.exe文件到你的目录
于 2020-04-25T13:50:58.660 回答
1

要求:

  • Ubuntu 16.04 (i386)
  • 火狐 65.0.1。
  • 蟒蛇 3.8.5
  • geckodriver-v0.27.0-linux32.tar.gz

这就是我所做的:

  • pip3 安装硒

  • 下载geckodriver v0.27.0

  • 提取 geckodriver

  • mv geckodriver /usr/local/bin/

  • 导出 PATH=$PATH:/usr/local/bin/geckodriver

  • 使用命令检查 Xauthority --> 定位 Xauthority

  • cd /home/your-user/Xauthority

  • chown root: .Xauthority

  • 创建python代码:

    从硒导入网络驱动程序

    browser = webdriver.Firefox() browser.get('http://localhost')

  • 运行python脚本。

于 2020-09-02T04:26:37.923 回答
0

当我设置环境变量export PYTHONDONTWRITEBYTECODE=1以在每次测试运行时删除 pyc 文件时,我遇到了同样的错误。我能够通过更新 selenium 来恢复更改pip install --upgrade selenium。操作系统 (10.10)

于 2016-06-07T04:01:57.690 回答
0

这是有效的:

apt-get update

apt-get install -y xorg xvfb firefox dbus-x11 xfonts-100dpi xfonts-75dpi xfonts-cyrillic
于 2016-07-17T12:06:26.603 回答
0
    driver=webdriver.Firefox(executable_path="add geckodriver.exe",log_path=None)
于 2017-06-01T12:41:59.310 回答
0

您需要安装 geckodriver:

https://selenium-python.readthedocs.io/installation.html

只需下载它,解压缩,然后将其复制到您的 python 目录中......很简单。

于 2019-03-25T06:47:16.413 回答
0

我在 Linux 上也发生了类似的错误。通过使用 apt 而不是 snap 安装 firefox 解决了这个问题。

于 2022-02-16T12:11:21.770 回答
-1

需要这两个包(ubuntu)!

apt-get update
apt-get install -y xorg xvfb firefox dbus-x11 xfonts-100dpi xfonts-75dpi xfonts-cyrillic

sudo apt-get install build-essential curl git m4 ruby texinfo libbz2-dev libcurl4-openssl-dev libexpat-dev libncurses-dev zlib1g-dev
sudo apt install linuxbrew-wrapper
brew install geckodriver

还有什么对我有用的是使用 chrome 而不是 firefox 检查本教程: https ://christopher.su/2015/selenium-chromedriver-ubuntu/

于 2017-05-17T22:39:34.980 回答