Skip to content

Commit 4502e40

Browse files
author
AutomatedTester
committed
Bumping python to 2.42.1
1 parent 24e2807 commit 4502e40

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

py/CHANGES

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Selenium 2.42.1
2+
* Fixed Py3 issues
3+
* Make firefox_binary.py and firefox_profile.py not executable
4+
* Make exceptions Python 3 compatible
5+
16
Selenium 2.42
27
* Support for Firefox 29 Native Events
38
* "remote_url" and "remote_browser" parameters for "./go test_remote".

py/docs/source/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -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.42/selenium-server-standalone-2.42.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.42.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.0"
18+
__version__ = "2.42.1"

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.0'
32+
__version__ = '2.42.1'

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.0",
31+
'version':"2.42.1",
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)