Skip to content

Commit 9e445a3

Browse files
committed
python 2.52 / changes
1 parent 1a08031 commit 9e445a3

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 2.52.0
2+
* Fixing case where UnexpectedAlertException doesn't get the alert_text in the error object
3+
* Firefox: Actually use launch_browser timeout Fixes #1300
4+
15
Selenium 2.51.1
26
* correcting bundling issue missing README.rst file
37

py/README.rst

Lines changed: 3 additions & 3 deletions
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.51.0.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.52.0.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.51/selenium-server-standalone-2.51.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.51.0.jar
114+
java -jar selenium-server-standalone-2.52.0.jar
115115

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

Lines changed: 3 additions & 3 deletions
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.51.0.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.52.0.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.51/selenium-server-standalone-2.51.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.51.0.jar
114+
java -jar selenium-server-standalone-2.52.0.jar
115115

116116
Then run your Python client scripts.
117117

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
setup_args = {
3333
'cmdclass': {'install': install},
3434
'name': 'selenium',
35-
'version': "2.51.1",
35+
'version': "2.52.0",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)