Skip to content

Commit 2a51484

Browse files
author
AutomatedTester
committed
Bumping Python version
1 parent 597b76b commit 2a51484

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

py/README

+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.42.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.43.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.42/selenium-server-standalone-2.42.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.42.0.jar
114+
java -jar selenium-server-standalone-2.43.0.jar
115115

116116
Then run your Python client scripts.
117117

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.42.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.43.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.42/selenium-server-standalone-2.42.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.42.jar
114+
java -jar selenium-server-standalone-2.43.jar
115115

116116
Then run your Python client scripts.
117117

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from selenium import selenium
1616

1717

18-
__version__ = "2.42.1"
18+
__version__ = "2.43.0"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
from .common.touch_actions import TouchActions
3030
from .common.proxy import Proxy
3131

32-
__version__ = '2.42.1'
32+
__version__ = '2.43.0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
setup_args = {
2929
'cmdclass':{'install': install},
3030
'name':'selenium',
31-
'version':"2.42.1",
31+
'version':"2.43.0",
3232
'description':'Python bindings for Selenium',
3333
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
3434
'url':'http://code.google.com/p/selenium/',

0 commit comments

Comments
 (0)