Skip to content

Commit fa839d3

Browse files
author
AutomatedTester
committedJul 29, 2015
Bump python to 2.47
1 parent 0e4837e commit fa839d3

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed
 

‎py/README

+3-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.46.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.47.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,16 +107,15 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.46.0.jar
114+
java -jar selenium-server-standalone-2.47.0.jar
115115

116116
Then run your Python client scripts.
117117

118118
Use The Source Luke!
119119
====================
120120

121121
View source code online at https://github.com/SeleniumHQ/selenium/tree/master/py/
122-

‎py/docs/source/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.46.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.47.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.46.0.jar
114+
java -jar selenium-server-standalone-2.47.0.jar
115115

116116
Then run your Python client scripts.
117117

‎py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from selenium import selenium
1919

2020

21-
__version__ = "2.46.1"
21+
__version__ = "2.47.0"

‎py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions
3333
from .common.proxy import Proxy
3434

35-
__version__ = '2.46.1'
35+
__version__ = '2.47.0'

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
setup_args = {
3232
'cmdclass': {'install': install},
3333
'name': 'selenium',
34-
'version': "2.46.1",
34+
'version': "2.47.0",
3535
'description': 'Python bindings for Selenium',
3636
'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(),
3737
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)
Please sign in to comment.