Skip to content

Commit

Permalink
[py] Release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Nov 28, 2016
1 parent d943ee2 commit 901ac2c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Selenium 3.0.2
* Add support for W3C Get Active Element
* Return when we use executeScript for faking WebElement.get_property
* Expand user paths and resolve absolute path for Chrome extensions
* Add support for verbose logging and custom path to EdgeDriver
* Update TakeElementScreenshot to match WebDriver specification
* Raise WebDriverException when FirefoxBinary fails to locate binary
* Fix getting IP for python 3
* Write Service log to DEVNULL by default
* Only attempt to remove the Firefox profile path if one was specified
* Added context manager for chrome/content in Firefox

Selenium 3.0.1
* Fix regressions with python 3
* Add support for Safari Technology Preview
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.0.1.tar.gz), unarchive it, and run::
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.0.2.tar.gz), unarchive it, and run::

python setup.py install

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "3.0.1"
__version__ = "3.0.2"
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 # noqa
from .common.proxy import Proxy # noqa

__version__ = '3.0.1'
__version__ = '3.0.2'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "3.0.1",
'version': "3.0.2",
'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 901ac2c

Please sign in to comment.