Changes between Version 23 and Version 24 of DeveloperGuidelines/Testing/Selenium


Ignore:
Timestamp:
06/05/12 18:24:19 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified DeveloperGuidelines/Testing/Selenium

    v23 v24  
    2020In order to execute the automated Selenium powered test scripts, you must install the Selenium Web Drivers into Python.
    2121
    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:
     22Download and install latest Selenium package:
    2623{{{
    27 cd selenium-2.20.0
     24wget http://pypi.python.org/packages/source/s/selenium/selenium-2.22.1.tar.gz
     25tar zxvf selenium-2.22.1.tar.gz
     26cd selenium-2.22.1
    2827python setup.py install
    2928}}}