Skip to content

Commit

Permalink
Chromedriver version 103.0.5060.24
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkaiser committed May 31, 2022
1 parent 70c596d commit 2c1c51f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# chromedriver-binary
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 102.0.5005.61 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 103.0.5060.24 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.

Alternatively the package [chromedriver-binary-auto](https://pypi.org/project/chromedriver-binary-auto/) can be used to automatically detect the latest chromedriver version required for the installed Chrome/Chromium browser.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def run(self):
Downloads, unzips and installs chromedriver.
If a chromedriver binary is found in PATH it will be copied, otherwise downloaded.
"""
chromedriver_version='102.0.5005.61'
chromedriver_version='103.0.5060.24'
chromedriver_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'chromedriver_binary')
chromedriver_filename = find_binary_in_path(get_chromedriver_filename())
if chromedriver_filename and check_version(chromedriver_filename, chromedriver_version):
Expand Down Expand Up @@ -58,7 +58,7 @@ def run(self):

setup(
name="chromedriver-binary",
version="102.0.5005.61.0",
version="103.0.5060.24.0",
author="Daniel Kaiser",
author_email="[email protected]",
description="Installer for chromedriver.",
Expand Down

0 comments on commit 2c1c51f

Please sign in to comment.