Skip to content

Commit 68beca0

Browse files
[py] Bump python bindings to beta 3
1 parent 4c4235a commit 68beca0

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ py_wheel(
135135
strip_path_prefixes = [
136136
"py",
137137
],
138-
version = "4.0.0.b2.post1",
138+
version = "4.0.0.b3",
139139
visibility = ["//visibility:public"],
140140
deps = [
141141
":selenium-pkg",

py/CHANGES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Selenium 4 Beta 3
2+
3+
* Enable more tests
4+
* Improve support for WebDriver Bidi over selenium grid
5+
* Update CDP Support versions to remove 86,87 and add 90,91
6+
* Allow overriding the default 250 msecs duration of pointer movement (#9336)
7+
* Only give deprecation warning if Profile is being used in options
8+
* Loosen version requirements on dependencies. Fixes #9312
9+
* Bump urllib3 from 1.26.2 to 1.26.3 in /py (#9311)
10+
* Disable wait on frame test due to bug in Firefox
11+
* Correct pinned browser path for chrome on linux
12+
113
Selenium 4 beta 2 Post 1
214

315
* Fix Chrome instantiation

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.0b2.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.0b3.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.0b2.post1"
19+
__version__ = "4.0.0b3"

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.proxy import Proxy # noqa
3939
from .common.keys import Keys # noqa
4040

41-
__version__ = '4.0.0b2.post1'
41+
__version__ = '4.0.0b3'

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.0b2.post1",
30+
'version': "4.0.0b3",
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)