I started using the Microsoft edge driver...
This is the second time that i'm with this problem chrome driver, so probably i will use the edge driver that has all versions of browser able to download as his recpectives drivers.
The code that i used to change for "microsoft edge".
"
from selenium import webdriver
from selenium.webdriver.edge.service import Service
from selenium.webdriver.edge.options import Options
import time
edge_path = r'path'
options = Options()
options.use_chromium = True # Usar o Chromium Edge
#options.add_argument('--headless') # Executar em modo headless, se necessário
driver = webdriver.Edge(service=Service(executable_path=edge_path), options=options)
wait = WebDriverWait(driver, 20)
"
HOPE THAT HELPS!