web-dev-qa-db-ja.com

Python firefoxを起動しようとしたときのSeleniumエラー

Ipythonノートブックで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
16
CultureQuant

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.exeFirefoxDriver を参照してください

または、FirefoxバイナリのパスをWindowsに追加します [〜#〜] path [〜#〜]

28
Yi Zeng

これが働いたものです:

apt-get update

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

環境変数export PYTHONDONTWRITEBYTECODE=1を設定して、テストを実行するたびにpycファイルを削除すると、同じエラーが発生しました。 Selenium pip install --upgrade Seleniumを更新することにより、変更を元に戻すことができました。 OSX(10.10)

0
Al Kan

Geckodriverをインストールする必要があります。

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

それをダウンロードして解凍し、pythonディレクトリ...シンプルに。

0
Gilco
    driver=webdriver.Firefox(executable_path="add geckodriver.exe",log_path=None)
0
Ak8511

これらの2つのパッケージが必要です(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

私のために働いているのは、Firefoxの代わりにchromeを使用してこのチュートリアルをチェックすることです: https://christopher.su/2015/Selenium-chromedriver-ubuntu/

0
Bassem Shahin