Skip to content

Commit

Permalink
Bumping Python to 2.53.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Jun 8, 2016
1 parent a62bbd6 commit dfc1cd7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Selenium 2.53.3
* Use the correct binary path when using Marionette
* Fixed: Unhelpful error message when PhantomJS exits. (#2173 #2168)
* Fix broken link to python documentation (#2159)
* Attempt to remove Firefox profile when using Marionette
* Ensure all capabilities are either within desiredCapabilities or requiredCapabilities
* Correct the expected capability name for the Firefox profile
* Add Firefox options to capabilities
* Visibility_of_all implies it only returns elements if all visible (#2052)
* Find visible elements (#2041)

Selenium 2.53.2
* Fix send keys when using PUA keys e.g. Keys.RIGHT #1839
* Fix cookie file leak in PhantomJS #1854
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from selenium import selenium


__version__ = "2.53.2"
__version__ = "2.53.3"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.53.2'
__version__ = '2.53.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "2.53.2",
'version': "2.53.3",
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
'url': 'https://github.com/SeleniumHQ/selenium/',
Expand Down

0 comments on commit dfc1cd7

Please sign in to comment.