How to install seleniumHQ for Python on Windows?
Posted
by
Katie
on Super User
See other posts from Super User
or by Katie
Published on 2012-09-25T14:27:34Z
Indexed on
2012/09/25
15:40 UTC
Read the original article
Hit count: 279
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:)
© Super User or respective owner