How to install seleniumHQ for Python on Windows?
- by Katie
I would like to know how to install SeleniumHQ (http://seleniumhq.org/download/) on Windows XP/Vista/7?
On Ubuntu/Debian system you need to just type those commands:
$ sudo apt-get install python-pip
$ sudo pip install selenium
$ sudo apt-get install python-pip xvfb xserver-xephyr
$ sudo pip install selenium
and then I can do this:
#!/usr/bin/env python
from selenium import selenium
# ...
but how about Windows? Thanks for any help (I know where to find Selenium doc but still - would anybody be so kind to give me some steps: I mean, download this, do that ...)
THANKS:)