Changes between Version 23 and Version 24 of DeveloperGuidelines/Testing/Selenium
- Timestamp:
- 06/05/12 18:24:19 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelines/Testing/Selenium
v23 v24 20 20 In order to execute the automated Selenium powered test scripts, you must install the Selenium Web Drivers into Python. 21 21 22 Download latest Selenium package: 23 1. http://pypi.python.org/packages/source/s/selenium/selenium-2.20.0.tar.gz 24 2. Extract it 25 3. CMD/Terminal bash: 22 Download and install latest Selenium package: 26 23 {{{ 27 cd selenium-2.20.0 24 wget http://pypi.python.org/packages/source/s/selenium/selenium-2.22.1.tar.gz 25 tar zxvf selenium-2.22.1.tar.gz 26 cd selenium-2.22.1 28 27 python setup.py install 29 28 }}}