Skip to content

Commit d777cf5

Browse files
[py] Bump python bindings to 4.0.0a5
1 parent a8f1d5f commit d777cf5

File tree

6 files changed

+30
-6
lines changed

6 files changed

+30
-6
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ py_wheel(
6363
name = 'selenium-wheel',
6464
distribution = 'selenium',
6565
python_tag = ["py2", "py3"],
66-
version = "4.0.0.a4",
66+
version = "4.0.0.a5",
6767
strip_path_prefixes = [
6868
"py",
6969
],

py/CHANGES

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
Selenium 4.0 Alpha 5
2+
3+
* Correct service usage in IE Binding. Fixes #7749
4+
* Deprecate find_element(s)_by_* calls
5+
* Use a capability to switch engines for Edge (#8096)
6+
* Fix Flake8 errors
7+
* Add WPEWebKit driver (#6375)
8+
* update python_requires to only support python 2.7 and Python3.5+(#8085)
9+
* add the ability to generate a wheel via bazel
10+
* Add in support for page loading strategies for Options
11+
* Add the ability to get and set timeouts against a driver. Fixes #7738
12+
* Correct Docstring import in WebDriverWait example. Fixes #7780
13+
* Explicitly force timeout value to float in WebDriverWait. Fixes #8050
14+
* Add support for relative locators
15+
* Fix clear actions in ActionChains (#7943)
16+
* Automate RemoteConnection subclass selection (#8010)
17+
* Fix capabilties to support macOS platform (#7980)
18+
* fix: DeprecationWarning of base64.encodestring() (#7446)
19+
* Build python code with Bazel
20+
* Parse python docstring example as code snippet
21+
* correct python_requires in setup
22+
* Fix grammar typo in exceptions.py (#7657)
23+
* Fixed references to chromedriver website
24+
125
Selenium 4.0 Alpha 3
226

327
* Fixing stacktrace parser to handle strings as well as objects

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
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.0a3.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.0a5.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

@@ -131,7 +131,7 @@ Download the server separately, from: http://selenium-release.storage.googleapis
131131

132132
Run the server from the command line::
133133

134-
java -jar selenium-server-standalone-3.141.0.jar
134+
java -jar selenium-server-standalone-4.0.0.jar
135135

136136
Then run your Python client scripts.
137137

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.0a3"
19+
__version__ = "4.0.0a5"

py/selenium/webdriver/__init__.py

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

43-
__version__ = '4.0.0a3'
43+
__version__ = '4.0.0a5'

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.0a3",
30+
'version': "4.0.0a5",
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)