Skip to content

Commit 1bedbe2

Browse files
author
AutomatedTester
committed
Bump Python version to 2.48. Changelog for Python Updated
1 parent 270fcf6 commit 1bedbe2

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

py/CHANGES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Selenium 2.48.0
2+
* Update error pulling to match spec when we encounter a spec compliant browser.
3+
* Disable tests that are not working with Marionette when running Marionette tests
4+
* Add the ability to run python marionette tests
5+
* Python 3 compatibility for remote Authorization
6+
* changing casing of children finding tests
7+
18
Selenium 2.47.3
29
* Bring back py 3 support
310

py/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.47.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.48.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -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.1.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.48/selenium-server-standalone-2.48.0.jar
111111

112112
Run the server from the command line::
113113

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

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.47.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.48.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -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.1.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.48/selenium-server-standalone-2.48.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.47.1.jar
114+
java -jar selenium-server-standalone-2.48.0.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.3"
21+
__version__ = "2.48.0"

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.3'
35+
__version__ = '2.48.0'

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.3",
34+
'version': "2.48.0",
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)