Skip to content

Commit

Permalink
Bumping python to 2.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed May 27, 2014
1 parent 24e2807 commit 4502e40
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -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".
Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from selenium import selenium


__version__ = "2.42.0"
__version__ = "2.42.1"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.42.0'
__version__ = '2.42.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
Expand Down

0 comments on commit 4502e40

Please sign in to comment.