python selenium下载一个合适的chromedriver.exe(稳定版本)

可以使用该脚本来进行下载:
下载前需要安装如下的依赖

requests==2.27.1
selenium==4.14.0
webdriver_manager==4.0.1

下载脚本代码:

import json
import subprocess
import shutil
import os
import time
import zipfileimport requests
from webdriver_manager.core.os_manager import OperationSystemManager
from webdriver_manager.chrome import ChromeDriverManager, ChromeType__all__ = {'download_suit_chrome_driver'
}# 记录固定数据
chrome_json_file = 'chrome_version.json'
chrome_zip = 'chrome_driver.zip'def format_float(num):return '{:.2f}'.format(num)def download_file(name, url):''':param name:下载保存的名称:param url: 下载链接:return:'''headers = {'Proxy-Connection': 'keep-alive'}r = requests.get(url, stream=True, headers=headers)length = float(r.headers['content-length'])f = open(name, 'wb')count = 0count_tmp = 0time1 = time.time()for chunk in r.iter_content(chunk_size=512):if chunk:f.write(chunk)count += len(chunk)if time.time() - time1 > 2:p = count / length * 100speed = (count - count_tmp) / 1024 / 1024 / 2count_tmp = countprint(name + ': ' + format_float(p) + '%' + ' Speed: ' + format_float(speed) + 'M/S')time1 = time.time()f.close()def install_chrome_driver():"""安装chrome浏览器"""try:p = ChromeDriverManager(chrome_type=ChromeType.CHROMIUM).install()os.environ['CHROME_DRIVER_PATH'] = pexcept Exception as e:print("error")def get_chromedriver_version(chromedriver_path="chromedriver.exe"):"""获取chrome_driver版本Args:chromedriver_path:Returns:"""try:# 运行Chromedriver,并通过命令行参数获取版本信息result = subprocess.run([chromedriver_path, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)if result.returncode == 0:# 如果成功执行,解析版本信息version = result.stdout.strip()version_list = str(version).split(" ")if len(version_list) == 3:version = version_list[1]return True, versionelse:# 如果执行失败,输出错误信息error_message = result.stderr.strip()return False, f"Error: {error_message}"except Exception as e:return False, f"An error occurred: {str(e)}"def get_chrome_version():"""获取chrome版本Returns:"""try:os_version = OperationSystemManager().get_browser_version_from_os("google-chrome")print(f"os_version:{os_version}")return os_versionexcept Exception as e:return Nonedef get_chrome_version_info(version_info: str):if os.path.exists(chrome_json_file):with open(chrome_json_file) as f:data = f.read()json_data = json.loads(data)if json_data.get(version_info, None) is not None:return True, json_data.get(version_info)else:dict_version_info = {}google_driver_json_url = 'https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json'res = requests.get(google_driver_json_url)res_dict = json.loads(res.text)version_list = res_dict['versions']for version in version_list:downloads_ = version['downloads']if downloads_.get('chromedriver', None) is not None:download_list = downloads_['chromedriver']for data in download_list:if data['platform'] == 'win64':version_place = str(version['version'])version_ = version_place[0:version_place.rfind('.')]dict_version_info[version_] = data['url']with open(chrome_json_file, 'w+') as f:json.dump(dict_version_info, f, indent=4)if dict_version_info.get(version_info, None) is not None:version_url = dict_version_info[version_info]return True, version_urlreturn False, 'error to get'else:dict_version_info = {}google_driver_json_url = 'https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json'res = requests.get(google_driver_json_url)res_dict = json.loads(res.text)version_list = res_dict['versions']for version in version_list:downloads_ = version['downloads']if downloads_.get('chromedriver', None) is not None:download_list = downloads_['chromedriver']for data in download_list:if data['platform'] == 'win64':version_place = version['version']version_ = version_place[0:version_place.rfind('.')]dict_version_info[version_] = data['url']with open(chrome_json_file, 'w+') as f:json.dump(dict_version_info, f, indent=4)if dict_version_info.get(version_info, None) is not None:version_url = dict_version_info[version_info]return True, version_urlreturn False, 'error to get'def download_suit_chrome_driver(chrome_driver_path: str = "chromedriver.exe"):"""下载合适的chrome_driver.exeReturns:"""is_ok, chrome_driver_version = get_chromedriver_version(chrome_driver_path)browser_version = get_chrome_version()if is_ok:if str(chrome_driver_version).count(browser_version) > 0:print(f"当前已是合适的chrome_driver:{chrome_driver_version}")return Trueelse:chrome_driver_big_version = browser_version.split(".")[0]if int(chrome_driver_big_version) < 115:print("下载Chrome-Driver")install_chrome_driver()else:is_get_chrome, version_info = get_chrome_version_info(browser_version)if is_get_chrome:download_url = version_infoprint('ok-remove-0')if os.path.exists(chrome_zip):os.remove(chrome_zip)print('ok-remove-2')download_file(chrome_zip, download_url)print('ok-remove-3')with zipfile.ZipFile(chrome_zip, 'r') as zip_ref:zip_ref.extractall('./')shutil.move('./chromedriver-win64/chromedriver.exe', './chromedriver.exe')if os.path.exists(chrome_zip):os.remove(chrome_zip)else:chrome_driver_big_version = browser_version.split(".")[0]if int(chrome_driver_big_version) < 115:print("下载Chrome-Driver")install_chrome_driver()else:is_get_chrome, version_info = get_chrome_version_info(browser_version)if is_get_chrome:download_url = version_infoprint('ok-remove-0')if os.path.exists(chrome_zip):os.remove(chrome_zip)print('ok-remove-2')download_file(chrome_zip, download_url)print('ok-remove-3')with zipfile.ZipFile(chrome_zip, 'r') as zip_ref:zip_ref.extractall('./')shutil.move('./chromedriver-win64/chromedriver.exe', './chromedriver.exe')if os.path.exists(chrome_zip):os.remove(chrome_zip)if __name__ == '__main__':download_suit_chrome_driver("chromedriver.exe")

调用方式:

  download_suit_chrome_driver("xxxxx")  ## xxxxxx表示chrome_driver.exe路径(可为空)

github下载链接: https://github.com/huifeng-kooboo/download_chrome_driver

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/105506.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

transformers架构实现

目录 架构代码如下 模型打印如下 架构代码如下 import numpy as np from torch.autograd import Variable import copy from torch import softmax import math import torch import torch.nn.functional as F import torch.nn as nn # 构建Embedding类来实现文本嵌入层 class…

百度车牌识别AI Linux使用方法-armV7交叉编译

1、获取百度ai的sdk 百度智能云-登录 (baidu.com) 里面有两个版本的armV7和armV8架构。v7架构的性能比较低往往需要交叉编译&#xff0c;v8的板子性能往往比较好&#xff0c;可以直接在板子上编译。 解压到ubuntu里面。这里介绍v7架构的。 2、ubuntu环境配置 ubuntu下安装软件…

1373. 二叉搜索子树的最大键值和

1373. 二叉搜索子树的最大键值和 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val0, leftNone, rightNone): # self.val val # self.left left # self.right right class Solution:def __init__(self):self…

网络编程基础知识总结——IP,端口,协议

目录 1. 什么是网络编程&#xff1f; 2. 网络编程的三要素 3. IP 3.1 IP地址的概念 3.2 IP地址的分类 3.3 IPv4解析 3.4 Ipv6解析 4. IPv4 的使用细节 5. 特殊IP地址 4. 端口号 5. 协议 5.1 UDP协议 5.2 TCP协议 1. 什么是网络编程&#xff1f; 总的来说就是一句…

[计算机提升] Windows系统权限

1.2 Windows系统权限 在Windows操作系统中&#xff0c;权限是指授予用户或用户组对系统资源进行操作的权利。权限控制是操作系统中重要的安全机制&#xff0c;通过权限控制可以限制用户对系统资源的访问和操作&#xff0c;从而保护系统安全。 Windows操作系统中包含以下几种权…

Leetcode算法解析——查找总价格为目标值的两个商品

1. 题目链接&#xff1a;LCR 179. 查找总价格为目标值的两个商品 2. 题目描述&#xff1a; 商品价格按照升序记录于数组 price。请在购物车中找到两个商品的价格总和刚好是 target。若存在多种情况&#xff0c;返回任一结果即可。 示例 1&#xff1a; 输入&#xff1a;price …

大语言模型迎来重大突破!找到解释神经网络行为方法

前不久&#xff0c;获得亚马逊40亿美元投资的ChatGPT主要竞争对手Anthropic在官网公布了一篇名为《朝向单义性&#xff1a;通过词典学习分解语言模型》的论文&#xff0c;公布了解释经网络行为的方法。 由于神经网络是基于海量数据训练而成&#xff0c;其开发的AI模型可以生成…

以单颗CMOS摄像头重构三维场景,维悟光子发布单目红外3D成像模组

维悟光子近期发布全新单目红外3D成像模组,现可提供下游用户进行测试导入。通过结合微纳光学元件编码和人工智能算法解码,维悟光子单目红外3D成像模组采用单颗摄像头,通过单帧拍摄,可同时获取像素级配准的3D点云和红外图像信息,可被应用于机器人、生物识别等广阔领域。 市场…

Qt 5.12.12 静态编译(MinGW)

前置准备 系统环境 版本 Windows 11 专业版 版本 22H2 安装日期 ‎2023/‎6/‎18 操作系统版本 22621.2428 体验 Windows Feature Experience Pack 1000.22674.1000.0依赖工具 gcc Qt 5.12.12 安装 MinGW 后自动安装 https://download.qt.io/archive/qt/5.12/5.12.12/qt-ope…

三防PDA手持终端开发板-联发科MTK6765平台安卓主板方案

三防手持终端安卓主板方案采用了联发科12nm八核MT6765处理器&#xff0c;配备4G64GB内存(可选配6GB256GB)&#xff0c;并搭载最新的Android 10.0操作系统。该方案支持许多功能&#xff0c;包括高亮显示屏、高清摄像头、NFC、3A快速充电、1D/2D扫描(可选配)、高精度定位(可选配)…

如何编写lua扩展库

很多人都听过lua,也见过lua脚本,但可能不理解为什么lua脚本里面会有这么多没见过的函数, 而且这些函数功能是如此强大,能上天入地,无所不能 其实这些函数并不是lua自带的,都是由程序作者造出来的隐藏在了他们的主程序里 一般运行lua脚本,我们会使用自带的解释器,当你拿到一份…

VMware _ Ubuntu _ root 密码是什么,怎么进入 root 账户

文章目录 进入 root 账户设置 root 密码小结 在 VMware 安装 ubuntu 虚拟机之后&#xff0c;root 用户的密码是什么&#xff1f;安装的过程也没有提示输入 root 用户的密码&#xff0c;只有创建第一个非 root 用户的密码。但是 root 用户是存在的&#xff0c;又怎么切换到 root…

红帽Linux的安装和部署

目录 一、红帽Linux的安装阶段 1、下载redhat7.9的iso镜像 2、安装阶段 二、红帽Linux的配置阶段 1、第一次进入装机配置 2、进入机器后的一些配置 三、远程连接阶段 1、关闭防火墙 2、使用Xshell远程连接&#xff08;其他连接工具也行&#xff09; 1.开启SSH服务 2.连…

利达卓越:关注环保事业,持续赋能科技

随着全球环境问题的日益突出,绿色金融作为一种新兴的金融模式逐渐受到各国的重视。绿色金融是指在金融活动中,通过资金、信贷和风险管理等手段,支持环境友好和可持续发展的项目和产业。绿色金融的出现是为了应对气候变化、资源短缺、污染问题等现实挑战,促进经济的绿色转型和可…

基于海洋捕食者优化的BP神经网络(分类应用) - 附代码

基于海洋捕食者优化的BP神经网络&#xff08;分类应用&#xff09; - 附代码 文章目录 基于海洋捕食者优化的BP神经网络&#xff08;分类应用&#xff09; - 附代码1.鸢尾花iris数据介绍2.数据集整理3.海洋捕食者优化BP神经网络3.1 BP神经网络参数设置3.2 海洋捕食者算法应用 4…

Delay-Based 拥塞控制算法

上班七天了&#xff0c;有点崩溃&#xff0c;看一篇论文提神&#xff1a;A Delay-Based Approach for Congestion Avoidance in Interconnected Heterogeneous Computer networks&#xff0c;来自 Raj Jain&#xff0c;1989 年。这篇论文基于下图展开&#xff1a; 是不是很熟…

SiC外延片测试方案

外延材料是实现器件制造的关键&#xff0c;主要技术指标有外延层厚度、晶格布局&#xff0c;材料结构&#xff0c;形貌以及物理性质&#xff0c;表面粗糙度和掺杂浓度等。下面阐述SiC外延表面常见的测试手段&#xff1a; 1. 外延层厚度&#xff08;傅里叶变换红外FT-IR&#xf…

SpringBoot通过配置切换注册中心(多注册中心nacos和eureka)

场景&#xff1a; 因项目需要&#xff0c;一个springcloud微服务工程需要同时部署到A,B两个项目使用&#xff0c;但A项目使用Eureka注册中心&#xff0c;B项目使用Nacos注册中心&#xff0c;现在需要通过部署时修改配置来实现多注册中心的切换。 解决思路&#xff1a; 如果同时…

Eslint配置 Must use import to load ES Module(已解决)

最近在配置前端项目时&#xff0c;eslint经常会碰到各种报错&#xff08;灰常头疼~&#xff09; Syntax Error Error No ESLint configuration found.Syntax Error: Error: D:\dmq\dmq-ui.eslintrc.js: Environment key “es2021” is unknown at Array.forEach ()error in ./…

UE4 快速入门 1

安装 https://www.unrealengine.com/zh-CN/download Launcher ue4.23 editor visual studio 2019 社区版 文档学习