Skip to content

Commit d0e3c87

Browse files
Bump python version to 2.49 and update Changelog
1 parent 8b1d162 commit d0e3c87

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

py/CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Selenium 2.49.0
2+
* Have Firefox service write to a file instead of PIPE
3+
* on osx for firefox, fallback to checking homebrew install, if the default isn't there
4+
* Added Firefox path variable for string placeholder
5+
* Update README to show Python 3.2+
6+
* refactoring all the service classes to use a common one.
7+
* Add Firefox specific command to switch context between Browser content and Browser chrome
8+
* updating files after go copyright:update
9+
* Use specificationLevel to know that we are speaking GeckoDriver
10+
* Bug fixes: #1294, #1186
11+
112
Selenium 2.48.0
213
* Update error pulling to match spec when we encounter a spec compliant browser.
314
* Disable tests that are not working with Marionette when running Marionette tests

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

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.48.0.jar
114+
java -jar selenium-server-standalone-2.49.0.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.48.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.49.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.48/selenium-server-standalone-2.48.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.49/selenium-server-standalone-2.49.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.48.0.jar
114+
java -jar selenium-server-standalone-2.49.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.48.0"
21+
__version__ = "2.49.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.48.0'
35+
__version__ = '2.49.0'

setup.py

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

0 commit comments

Comments
 (0)