diff --git a/py/CHANGES b/py/CHANGES index 4dd425c745741..4dbd482dc79f7 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,7 @@ +Selenium 2.52.0 +* Fixing case where UnexpectedAlertException doesn't get the alert_text in the error object +* Firefox: Actually use launch_browser timeout Fixes #1300 + Selenium 2.51.1 * correcting bundling issue missing README.rst file diff --git a/py/README.rst b/py/README.rst index 356a1930b1052..24c53f41d6551 100644 --- a/py/README.rst +++ b/py/README.rst @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.51.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.52.0.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed. 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). -Download the server separately, from: http://selenium-release.storage.googleapis.com/2.51/selenium-server-standalone-2.51.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.51.0.jar + java -jar selenium-server-standalone-2.52.0.jar Then run your Python client scripts. diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index dbbe449e3e730..e046fb345d51d 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.51.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.52.0.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed. 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). -Download the server separately, from: http://selenium-release.storage.googleapis.com/2.51/selenium-server-standalone-2.51.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.52/selenium-server-standalone-2.52.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.51.0.jar + java -jar selenium-server-standalone-2.52.0.jar Then run your Python client scripts. diff --git a/setup.py b/setup.py index 8d3312d61afd3..a5eb0de2344ea 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "2.51.1", + 'version': "2.52.0", 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(), 'url': 'https://github.com/SeleniumHQ/selenium/',