Skip to content

Commit dfc1cd7

Browse files
Bumping Python to 2.53.3
1 parent a62bbd6 commit dfc1cd7

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
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.53.3
2+
* Use the correct binary path when using Marionette
3+
* Fixed: Unhelpful error message when PhantomJS exits. (#2173 #2168)
4+
* Fix broken link to python documentation (#2159)
5+
* Attempt to remove Firefox profile when using Marionette
6+
* Ensure all capabilities are either within desiredCapabilities or requiredCapabilities
7+
* Correct the expected capability name for the Firefox profile
8+
* Add Firefox options to capabilities
9+
* Visibility_of_all implies it only returns elements if all visible (#2052)
10+
* Find visible elements (#2041)
11+
112
Selenium 2.53.2
213
* Fix send keys when using PUA keys e.g. Keys.RIGHT #1839
314
* Fix cookie file leak in PhantomJS #1854

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.53.2"
21+
__version__ = "2.53.3"

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.53.2'
35+
__version__ = '2.53.3'

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.53.2",
35+
'version': "2.53.3",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)