Skip to content

Commit 58ac131

Browse files
Bump Python bindings to 3.4.3
1 parent 5e4af43 commit 58ac131

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 3.4.3
2+
* Fix EventFiringWebdriver and WebElement to raise AttributeError on missing attributes. (#4107)
3+
* unwrap WebElements inside dicts
4+
15
Selenium 3.4.2
26

37
* translate move_by_offset command to w3c

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.4.2.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.4.3.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.4.2"
19+
__version__ = "3.4.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 # noqa
3333
from .common.proxy import Proxy # noqa
3434

35-
__version__ = '3.4.2'
35+
__version__ = '3.4.3'

py/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.4.2",
32+
'version': "3.4.3",
3333
'license': 'Apache 2.0',
3434
'description': 'Python bindings for Selenium',
3535
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)