Skip to content

Commit 84ebcca

Browse files
committed
python point release bump 2.47.2
1 parent 94d4130 commit 84ebcca

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

py/README

Lines changed: 2 additions & 2 deletions
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.47/selenium-server-standalone-2.47.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.1.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.47.0.jar
114+
java -jar selenium-server-standalone-2.47.1.jar
115115

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
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.47/selenium-server-standalone-2.47.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.1.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.47.0.jar
114+
java -jar selenium-server-standalone-2.47.1.jar
115115

116116
Then run your Python client scripts.
117117

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from selenium import selenium
1919

2020

21-
__version__ = "2.47.1"
21+
__version__ = "2.47.2"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions
3333
from .common.proxy import Proxy
3434

35-
__version__ = '2.47.1'
35+
__version__ = '2.47.2'

setup.py

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

0 commit comments

Comments
 (0)