@@ -13,7 +13,7 @@ WebDriver in an intuitive way.
13
13
14
14
Selenium Python bindings provide a convenient API to access Selenium
15
15
WebDrivers like Firefox, Ie, Chrome, Remote etc. The current supported
16
- Python versions are 2.7, 3.2, 3.3 and 3.4 .
16
+ Python versions are 2.7, 3.2 and above .
17
17
18
18
This documentation explains Selenium 2 WebDriver API. Selenium
19
19
1 / Selenium RC API is not covered here.
@@ -23,18 +23,18 @@ Downloading Python bindings for Selenium
23
23
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24
24
25
25
You can download Python bindings for Selenium from the `PyPI page for
26
- selenium package <http ://pypi.python.org/pypi/selenium> `_. However,
26
+ selenium package <https ://pypi.python.org/pypi/selenium> `_. However,
27
27
a better approach would be to use
28
- `pip <http ://www. pip-installer.org /en/latest/installing.html >`_ to
29
- install the selenium package. Python 3.4 has pip available in the
30
- `standard library <http ://docs.python.org/3.4 /installing/index.html >`_.
28
+ `pip <https ://pip.pypa.io /en/latest/installing/ >`_ to
29
+ install the selenium package. Python 3.5 has pip available in the
30
+ `standard library <https ://docs.python.org/3.5 /installing/index.html >`_.
31
31
Using `pip `, you can install selenium like this::
32
32
33
33
pip install selenium
34
34
35
35
You may consider using `virtualenv <http://www.virtualenv.org >`_
36
- to create isolated Python environments. Python 3.4 has `pyvenv
37
- <http ://docs.python.org/3.4 /using/scripts.html#scripts-pyvenv> `_
36
+ to create isolated Python environments. Python 3.5 has `pyvenv
37
+ <https ://docs.python.org/3.5 /using/scripts.html#scripts-pyvenv> `_
38
38
which is almost same as virtualenv.
39
39
40
40
@@ -45,21 +45,21 @@ Detailed instructions for Windows users
45
45
46
46
You should have internet connection to perform this installation.
47
47
48
- 1. Install Python 3.4 using the `MSI available in python.org download
48
+ 1. Install Python 3.5 using the `MSI available in python.org download
49
49
page <http://www.python.org/download> `_.
50
50
51
51
2. Start a command prompt using the ``cmd.exe `` program and run the
52
52
``pip `` command as given below to install `selenium `.
53
53
54
54
::
55
55
56
- C:\Python34 \Scripts\pip.exe install selenium
56
+ C:\Python35 \Scripts\pip.exe install selenium
57
57
58
58
Now you can run your test scripts using Python. For example,
59
59
if you have created a Selenium based script and saved it inside
60
60
``C:\my_selenium_script.py ``, you can run it like this::
61
61
62
- C:\Python34 \python.exe C:\my_selenium_script.py
62
+ C:\Python35 \python.exe C:\my_selenium_script.py
63
63
64
64
65
65
Downloading Selenium server
0 commit comments