Skip to content

Commit 901ac2c

Browse files
committed
[py] Release 3.0.2
1 parent d943ee2 commit 901ac2c

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

py/CHANGES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Selenium 3.0.2
2+
* Add support for W3C Get Active Element
3+
* Return when we use executeScript for faking WebElement.get_property
4+
* Expand user paths and resolve absolute path for Chrome extensions
5+
* Add support for verbose logging and custom path to EdgeDriver
6+
* Update TakeElementScreenshot to match WebDriver specification
7+
* Raise WebDriverException when FirefoxBinary fails to locate binary
8+
* Fix getting IP for python 3
9+
* Write Service log to DEVNULL by default
10+
* Only attempt to remove the Firefox profile path if one was specified
11+
* Added context manager for chrome/content in Firefox
12+
113
Selenium 3.0.1
214
* Fix regressions with python 3
315
* Add support for Safari Technology Preview

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
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-3.0.1.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-3.0.2.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "3.0.1"
19+
__version__ = "3.0.2"

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 # noqa
3333
from .common.proxy import Proxy # noqa
3434

35-
__version__ = '3.0.1'
35+
__version__ = '3.0.2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
setup_args = {
3030
'cmdclass': {'install': install},
3131
'name': 'selenium',
32-
'version': "3.0.1",
32+
'version': "3.0.2",
3333
'description': 'Python bindings for Selenium',
3434
'long_description': open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3535
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)