Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 71040b8

Browse files
committed
use 3.5
1 parent a90807e commit 71040b8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

source/installation.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ WebDriver in an intuitive way.
1313

1414
Selenium Python bindings provide a convenient API to access Selenium
1515
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.
1717

1818
This documentation explains Selenium 2 WebDriver API. Selenium
1919
1 / Selenium RC API is not covered here.
@@ -23,18 +23,18 @@ Downloading Python bindings for Selenium
2323
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2424

2525
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,
2727
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>`_.
3131
Using `pip`, you can install selenium like this::
3232

3333
pip install selenium
3434

3535
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>`_
3838
which is almost same as virtualenv.
3939

4040

@@ -45,21 +45,21 @@ Detailed instructions for Windows users
4545

4646
You should have internet connection to perform this installation.
4747

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
4949
page <http://www.python.org/download>`_.
5050

5151
2. Start a command prompt using the ``cmd.exe`` program and run the
5252
``pip`` command as given below to install `selenium`.
5353

5454
::
5555
56-
C:\Python34\Scripts\pip.exe install selenium
56+
C:\Python35\Scripts\pip.exe install selenium
5757

5858
Now you can run your test scripts using Python. For example,
5959
if you have created a Selenium based script and saved it inside
6060
``C:\my_selenium_script.py``, you can run it like this::
6161

62-
C:\Python34\python.exe C:\my_selenium_script.py
62+
C:\Python35\python.exe C:\my_selenium_script.py
6363

6464

6565
Downloading Selenium server

0 commit comments

Comments
 (0)