From 4502e40a974fdd15e77223017ad5d6e4b4952b6b Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Tue, 27 May 2014 23:53:10 +0100 Subject: [PATCH] Bumping python to 2.42.1 --- py/CHANGES | 5 +++++ py/docs/source/index.rst | 4 ++-- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/py/CHANGES b/py/CHANGES index b7102c139cd13..3ed843b433fde 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,8 @@ +Selenium 2.42.1 +* Fixed Py3 issues +* Make firefox_binary.py and firefox_profile.py not executable +* Make exceptions Python 3 compatible + Selenium 2.42 * Support for Firefox 29 Native Events * "remote_url" and "remote_browser" parameters for "./go test_remote". diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 641b58312b59d..13bc895ca0e80 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -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.42/selenium-server-standalone-2.42.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.42.0.jar + java -jar selenium-server-standalone-2.42.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index b81110663f9fc..db99ab7b67009 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -15,4 +15,4 @@ from selenium import selenium -__version__ = "2.42.0" +__version__ = "2.42.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 7d16234c42b81..72d0c9b14cb00 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -29,4 +29,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.42.0' +__version__ = '2.42.1' diff --git a/setup.py b/setup.py index f7762cd1e6c7a..769bc53853947 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass':{'install': install}, 'name':'selenium', - 'version':"2.42.0", + 'version':"2.42.1", 'description':'Python bindings for Selenium', 'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url':'http://code.google.com/p/selenium/',