chromedriver-binary 141.0.7390.7.0__tar.gz → 142.0.7394.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/PKG-INFO +2 -2
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/README.md +1 -1
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary.egg-info/PKG-INFO +2 -2
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/setup.py +2 -2
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/LICENSE +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary/__init__.py +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary/utils.py +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary.egg-info/SOURCES.txt +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary.egg-info/dependency_links.txt +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary.egg-info/entry_points.txt +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/chromedriver_binary.egg-info/top_level.txt +0 -0
- {chromedriver_binary-141.0.7390.7.0 → chromedriver_binary-142.0.7394.0.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chromedriver-binary
|
3
|
-
Version:
|
3
|
+
Version: 142.0.7394.0.0
|
4
4
|
Summary: Installer for chromedriver.
|
5
5
|
Home-page: https://github.com/danielkaiser/python-chromedriver-binary
|
6
6
|
Author: Daniel Kaiser
|
@@ -26,7 +26,7 @@ Dynamic: license-file
|
|
26
26
|
Dynamic: summary
|
27
27
|
|
28
28
|
# chromedriver-binary
|
29
|
-
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version
|
29
|
+
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 142.0.7394.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
|
30
30
|
|
31
31
|
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.
|
32
32
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# chromedriver-binary
|
2
|
-
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version
|
2
|
+
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 142.0.7394.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
|
3
3
|
|
4
4
|
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.
|
5
5
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chromedriver-binary
|
3
|
-
Version:
|
3
|
+
Version: 142.0.7394.0.0
|
4
4
|
Summary: Installer for chromedriver.
|
5
5
|
Home-page: https://github.com/danielkaiser/python-chromedriver-binary
|
6
6
|
Author: Daniel Kaiser
|
@@ -26,7 +26,7 @@ Dynamic: license-file
|
|
26
26
|
Dynamic: summary
|
27
27
|
|
28
28
|
# chromedriver-binary
|
29
|
-
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version
|
29
|
+
Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 142.0.7394.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
|
30
30
|
|
31
31
|
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.
|
32
32
|
|
@@ -28,7 +28,7 @@ class DownloadChromedriver(build_py):
|
|
28
28
|
Downloads, unzips and installs chromedriver.
|
29
29
|
If a chromedriver binary is found in PATH it will be copied, otherwise downloaded.
|
30
30
|
"""
|
31
|
-
chromedriver_version='
|
31
|
+
chromedriver_version='142.0.7394.0'
|
32
32
|
chromedriver_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'chromedriver_binary')
|
33
33
|
chromedriver_filename = find_binary_in_path(get_chromedriver_filename())
|
34
34
|
if chromedriver_filename and check_version(chromedriver_filename, chromedriver_version):
|
@@ -65,7 +65,7 @@ class DownloadChromedriver(build_py):
|
|
65
65
|
|
66
66
|
setup(
|
67
67
|
name="chromedriver-binary",
|
68
|
-
version="
|
68
|
+
version="142.0.7394.0.0",
|
69
69
|
author="Daniel Kaiser",
|
70
70
|
author_email="daniel.kaiser94@gmail.com",
|
71
71
|
description="Installer for chromedriver.",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|