我的代码运行正常。然而从今天开始我开始遇到这个问题
发生异常:异常 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)
你尝试过吗?
pip install --upgrade webdriver_manager
一旦我遇到了同样的问题,升级网络驱动程序就是解决方案。