Skip to content

Commit fbc7acf

Browse files
Bump Python bindings to 3.3.2
1 parent 03c4fc9 commit fbc7acf

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

py/CHANGES

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Selenium 3.3.2
2+
3+
* Update window commands to use W3C End points
4+
* Update Alert when in W3C mode to use W3C Endpoints
5+
* Update to new W3C Execute Script end points
6+
* Add setting/getting proxy details to Firefox Options
7+
* Deprecate the use of browser profile when instantiating a session
8+
* Update start session to handle the W3C New Session
9+
* Add get/set window rect commands
10+
* Add InvalidArgumentException
11+
* When passing in `text` to send_keys, make sure we send a string not array
12+
* Fix string decoding in remote connection (#3663)
13+
* Fix indentation to satisfy PEP8
14+
* Try use old way of setting page load timeout if new way fails. Fixes #3654
15+
* fix file uploads for Firefox
16+
* Run unit tests on Python 3.3, 3.4, and 3.5 (#3638)
17+
* Fix indentation in double_click.
18+
* Fix non-W3C page load timeout setting.
19+
120
Selenium 3.3.1
221
* Fix encoding of basic auth header when using Python 3 Fixes #3622
322
* Add initial unit test suite

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.3.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.3.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.3.1"
19+
__version__ = "3.3.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.3.1'
35+
__version__ = '3.3.2'

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.3.1",
32+
'version': "3.3.2",
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)