Difference between revisions of "Selenium Notes"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 18: | Line 18: | ||
=Installing= | =Installing= | ||
Needed pip which needed easy_install | Needed [[Installing_PIP|pip]] which needed easy_install | ||
Also need to be able to get through proxy. | Also need to be able to get through proxy. So you might want to define the following environment variable. | ||
export http_proxy=http://username:password:PROXY:8080/ | export http_proxy=http://username:password:PROXY:8080/ | ||
Line 26: | Line 26: | ||
=Python Notes= | =Python Notes= | ||
See [Python - setuptools] | See [[Python - setuptools]] | ||
==required Packages== | |||
* http://pypi.python.org/simple/setuptools/ | |||
* http://pypi.python.org/simple/pip/ | |||
* http://pypi.python.org/simple/virtualenv/ | |||
===virtualenv=== | |||
* http://www.virtualenv.org/en/latest/index.html | |||
===Setuptools=== | |||
Latest revision as of 11:52, 4 January 2012
Check out:
Selenium IDE
WebKitDriver
Installing
Needed pip which needed easy_install
Also need to be able to get through proxy. So you might want to define the following environment variable.
export http_proxy=http://username:password:PROXY:8080/
Python Notes
required Packages
- http://pypi.python.org/simple/setuptools/
- http://pypi.python.org/simple/pip/
- http://pypi.python.org/simple/virtualenv/