Skip to content

Commit f2555ad

Browse files
[py] Bump to 4.0a3
1 parent 6355709 commit f2555ad

File tree

5 files changed

+32
-4
lines changed

5 files changed

+32
-4
lines changed

py/CHANGES

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Selenium 4.0 Alpha 3
2+
3+
* Fixing stacktrace parser to handle strings as well as objects
4+
* urllib throws on 404 so let's check the /status endpoint that returns 200
5+
* Changing default command executor address to the address of TNG Grid
6+
* Fixing check of type of a returned element in a test for all_of condition
7+
* Implement logical expected conditions in Python (#7121)
8+
* Explicitly clear PoolManager by using context manager (#6878)
9+
* Fix invisibility_of_element expected condition init function (#7484)
10+
* fix docs build, add chromium and edge to docs
11+
* flake8 fixes
12+
* allow --browser-binary and --browser-args to be used with ChromiumEdge
13+
* Add support for the new MicrosoftEdge (#7459)
14+
* increase async script timeout from 0 as the w3c spec states to start time checking immediately
15+
* fix unit test for firefox options, proxy key should be outside of options
16+
* update to w3c compliant log endpoints
17+
* Remove 'resolve_ip' option from RemoteConnection (#1729,#2509)
18+
* Running python unit tests with bazel
19+
* Pass capabilities rather than options to the proxy object (#6620)
20+
* Adding full page screenshot feature for Firefox (#7182)
21+
* Added EventFiringWebElement to the isinstance check in the move_to method.(#6604)
22+
* Added socksVersion field in proxy class (#6983)
23+
* also clear w3c actions in ActionChains#reset_actions
24+
* fix edge webdriver init by deprecating edge_service in favor of service also fix warnings import in edge/webdriver
25+
* Removes old exception and dead code from py lib.(#7134)
26+
* Raise error for unsupported method for set_window_rect
27+
128
Selenium 4.0 Alpha 1
229
* Update driver initialisation to use service and option objects
330
* turn on keep-alive by default for remote connections (#7072)
@@ -699,3 +726,4 @@ Selenium 2 Beta 2
699726
* Improved IEDriver
700727
* Basic Authentication support for Selenium 2
701728
* Ability to have multiple Firefox instances
729+

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a1.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a3.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

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__ = "4.0.0a1"
19+
__version__ = "4.0.0a3"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
from .common.touch_actions import TouchActions # noqa
3939
from .common.proxy import Proxy # noqa
4040

41-
__version__ = '4.0.0a1'
41+
__version__ = '4.0.0a3'

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.0.0a1",
30+
'version': "4.0.0a3",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)