Windows XP/Vista/7 にSeleniumHQ ( http://seleniumhq.org/download/ )をインストールする方法を知りたいですか?
Ubuntu/Debian システムでは、これらのコマンドを入力するだけです:
$ sudo apt-get install python-pip
$ sudo pip install selenium
$ sudo apt-get install python-pip xvfb xserver-xephyr
$ sudo pip install selenium
そして、私はこれを行うことができます:
#!/usr/bin/env python
from selenium import selenium
# ...
しかし、Windowsはどうですか?
私は最終的にそれをしましたが、まったくしませんでした。私はseleniumHQをインストールしました:
1. Download the last pip version from here: http://pypi.python.org/pypi/pip#downloads
2. Uncompress it
3. Download the last easy installer for Windows: (download the .exe at the bottom of http://pypi.python.org/pypi/setuptools ). Install it.
4. Go to the uncompressed pip directory and: python setup.py install
5. Add your python c:\Python2x\Scripts to the path
6. Run cmd.exe and type: pip install -U selenium
最後に次のように入力できます。
python
>> from selenium import selenium
>>
そしてそれはうまくいきます。しかし、これをインストールするにはまだ問題があります:
xvfb xserver-xephyr
Ubuntu/Debian OS では、次のように入力するだけです。
sudo apt-get install python-pip xvfb xserver-xephyr
それは機能しますが、Windowsはどうですか?私はsuperuser.comで尋ねました(見てください)が、誰も答えませんでした:(