diff --git a/py/CHANGES b/py/CHANGES index 86afd63818f42..9bfa0fe75579a 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -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 diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index a8359acba85c3..18c60790d0467 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -18,4 +18,4 @@ from selenium import selenium -__version__ = "2.53.2" +__version__ = "2.53.3" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index aa97020a03781..e65a40668093c 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -32,4 +32,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.53.2' +__version__ = '2.53.3' diff --git a/setup.py b/setup.py index 039d146ad7513..c3fa1810c1a14 100755 --- a/setup.py +++ b/setup.py @@ -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/',