网络驱动程序尝试下载版本,但失败

问题描述 投票:0回答:1

我的代码运行正常。然而从今天开始我开始遇到这个问题

发生异常:异常 win32没有这样的驱动程序版本122.0.6261.112

我尝试使用此代码,因为一旦我遇到此错误。

import pyautogui as pa
from time import sleep
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By

op = Options()

driver=webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=op)
python selenium-webdriver
1个回答
0
投票

你尝试过吗?

pip install --upgrade webdriver_manager

一旦我遇到了同样的问题,升级网络驱动程序就是解决方案。

© www.soinside.com 2019 - 2024. All rights reserved.