Skip to content

Commit

Permalink
[py] Bump python bindings to 4.0.0a5
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Mar 13, 2020
1 parent a8f1d5f commit d777cf5
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 6 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ py_wheel(
name = 'selenium-wheel',
distribution = 'selenium',
python_tag = ["py2", "py3"],
version = "4.0.0.a4",
version = "4.0.0.a5",
strip_path_prefixes = [
"py",
],
Expand Down
24 changes: 24 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
Selenium 4.0 Alpha 5

* Correct service usage in IE Binding. Fixes #7749
* Deprecate find_element(s)_by_* calls
* Use a capability to switch engines for Edge (#8096)
* Fix Flake8 errors
* Add WPEWebKit driver (#6375)
* update python_requires to only support python 2.7 and Python3.5+(#8085)
* add the ability to generate a wheel via bazel
* Add in support for page loading strategies for Options
* Add the ability to get and set timeouts against a driver. Fixes #7738
* Correct Docstring import in WebDriverWait example. Fixes #7780
* Explicitly force timeout value to float in WebDriverWait. Fixes #8050
* Add support for relative locators
* Fix clear actions in ActionChains (#7943)
* Automate RemoteConnection subclass selection (#8010)
* Fix capabilties to support macOS platform (#7980)
* fix: DeprecationWarning of base64.encodestring() (#7446)
* Build python code with Bazel
* Parse python docstring example as code snippet
* correct python_requires in setup
* Fix grammar typo in exceptions.py (#7657)
* Fixed references to chromedriver website

Selenium 4.0 Alpha 3

* Fixing stacktrace parser to handle strings as well as objects
Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

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::
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::

python setup.py install

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

Run the server from the command line::

java -jar selenium-server-standalone-3.141.0.jar
java -jar selenium-server-standalone-4.0.0.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.0.0a3"
__version__ = "4.0.0a5"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@
from .common.touch_actions import TouchActions # noqa
from .common.proxy import Proxy # noqa

__version__ = '4.0.0a3'
__version__ = '4.0.0a5'
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.0.0a3",
'version': "4.0.0a5",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit d777cf5

Please sign in to comment.