Skip to content

Commit 6810263

Browse files
committed
prepping python for 2.46 release
1 parent 61506a4 commit 6810263

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

py/CHANGES

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Selenium 2.46.0
2+
* Firefox support up to 38
3+
* BlackBerry browser support
4+
* remove Presto-Opera support
5+
* firefox extension extraction fixes
6+
* process management fixes with phantomjs
7+
* Comparing remote web element for equality does not require a remote command
8+
* Issues Fixed: (gcode) 8493, 8521, 8498, 8274, 8497, 5923
9+
* Issues Fixed: (github) 401
10+
111
Selenium 2.45.0
212
* Firefox support up to 35, support for native events up to 34.
313
* Make Opera driver support also the new Blink based Opera

py/README

+3-3
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.45.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.46.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.45/selenium-server-standalone-2.45.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.45.0.jar
114+
java -jar selenium-server-standalone-2.46.0.jar
115115

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

+3-3
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.45.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.46.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.45/selenium-server-standalone-2.45.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.45.0.jar
114+
java -jar selenium-server-standalone-2.46.0.jar
115115

116116
Then run your Python client scripts.
117117

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from selenium import selenium
2121

2222

23-
__version__ = "2.45.0"
23+
__version__ = "2.46.0"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
from .common.touch_actions import TouchActions
3434
from .common.proxy import Proxy
3535

36-
__version__ = '2.45.0'
36+
__version__ = '2.46.0'

setup.py

+1-1
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.45.0",
34+
'version': "2.46.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)