From 7e07511b9286723f8bc16a3e52d4629a7f4d1118 Mon Sep 17 00:00:00 2001 From: Daniel Kaiser Date: Sat, 14 Jan 2023 04:03:45 +0000 Subject: [PATCH] Chromedriver version 110.0.5481.30 --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f7f9d38..d895e14 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # chromedriver-binary -Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 109.0.5414.74 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 110.0.5481.30 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. diff --git a/setup.py b/setup.py index 2f5c2d6..ff7b6a1 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,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='109.0.5414.74' + chromedriver_version='110.0.5481.30' 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): @@ -59,7 +59,7 @@ def run(self): setup( name="chromedriver-binary", - version="109.0.5414.74.0", + version="110.0.5481.30.0", author="Daniel Kaiser", author_email="daniel.kaiser94@gmail.com", description="Installer for chromedriver.",