Selenium根据Chrome浏览器版本自动下载/更新驱动chromedriver.exe

个人经常使用到selenium来控制浏览器进行相关的操作,但是Chrome浏览器经常会自动更新,导致已有的驱动程序chromedriver.exe失效,需要重新下载。

以前尝试过禁止Chrome浏览器更新,但是这并不是很好的解决方案。

于是换了个方向,既然Chrome浏览器会自动更新,那么在我使用selenium控制浏览器时,也进行自动更新驱动程序。

官方下载速度太慢,这里使用的是淘宝NPM镜像地址CNPM Binaries Mirrorhttps://registry.npmmirror.com/binary.html?path=chromedriver/

首先通过selenium尝试启动Chrome浏览器,如果异常再做对应的处理,就当前项目主要有两个异常:

  1. 驱动文件不存在:

    selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH.

  2. 驱动文件与当前浏览器不兼容:

    selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 101 Current browser version is 113.0.5672.64 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe

然后根据对应的异常捕获本地已安装的Chrome浏览器的版本,然后进行下载/更新

驱动程序chromedriver.exe版本号一般为4个字段(113.0.5672.24),使用正则匹配前3个字段,最后一位使用最小的版本号

 最后拼接对应版本号驱动程序的下载链接,下载并解压驱动文件,完成自动下载/更新操作。

 完整代码:

import os
import re
import sys
import winreg
import requests
from zipfile import ZipFile
from selenium import webdriver
from selenium.common.exceptions import WebDriverException, SessionNotCreatedException


def download_webdriver(driver_version):
    """
    下载更新驱动\n
    驱动下载网址:https://registry.npmmirror.com/binary.html?path=chromedriver/
    """
    # 获取驱动列表
    version_list = requests.get("https://registry.npmmirror.com/-/binary/chromedriver/").json()
    version_list = [version["name"] for version in version_list]
    # 获取符合的驱动版本号
    target_version = driver_version.rsplit(".", 1)[0]  # 112.0.5615.28 >>> 112.0.5615
    for version in version_list:
        result = re.match(f"{target_version}.\d+", version)
        if result != None:
            target_version = result.group(0)
    print(f"目标驱动程序版本: {target_version}")
    # 下载驱动压缩包
    download_url = f"https://cdn.npmmirror.com/binaries/chromedriver/{target_version}/chromedriver_win32.zip"
    res = requests.get(download_url, stream=True)
    file_size = int(res.headers.get('Content-Length'))  # 获取文件总大小(字节)
    file_size_MB = file_size / 1024 / 1024
    with open('./chromedriver_win32.zip', 'wb') as fwb:
        n = 1
        for chunk in res.iter_content(int(file_size / 10) + 1):   # 每次遍历的块大小
            fwb.write(chunk)
            schedule = "████" * n + "    " * (10 - n)
            print(f"进度: {10*n}% |{schedule}| {(file_size_MB/10)*n:.2f}MB/{file_size_MB:.2f}MB", end='\r')
            n += 1
    # 解压驱动压缩包
    with ZipFile("./chromedriver_win32.zip") as file:
        file.extract("chromedriver.exe", ".")
    os.remove("./chromedriver_win32.zip")
    print("\n下载/更新完成!")


def create_webdriver(options=None):
    """
    判断浏览器驱动是否正常\n
    return:浏览器驱动对象
    """
    while True:
        try:    # 判断驱动是否正常
            driver = webdriver.Chrome(options=options)
            return driver
        except SessionNotCreatedException as msg:   # 驱动与浏览器版本不一致
            driver_version = re.search("Chrome version (\d+)", str(msg)).group(1)
            chrome_version = re.search("Current browser version is ([\d.]+) with", str(msg)).group(1)
            print(f"SessionNotCreatedException: 浏览器版本与驱动程序不兼容,浏览器({chrome_version}),当前驱动程序({driver_version})\n正在更新驱动程序...")
            download_webdriver(chrome_version)
        except WebDriverException as msg:   # 缺少驱动文件
            # 获取本机Chrome浏览器的版本
            key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, 'SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Google Chrome')
            chrome_version = winreg.QueryValueEx(key, 'DisplayVersion')[0]    # Version
            print(f"WebDriverException: 缺少浏览器对应的驱动程序,浏览器({chrome_version})\n正在下载驱动程序...")
            download_webdriver(chrome_version)
        except Exception as msg:
            print(msg)
            sys.exit(1)


if __name__ == "__main__":
    options = webdriver.ChromeOptions()
    options.add_experimental_option('excludeSwitches', ['enable-logging'])

    driver = create_webdriver(options)
    print(111)
    driver.quit()

  • 7
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值