With chromedriver version above 115, this has stopped working:
driver = webdriver.Chrome()
with the error
There is no such driver by url https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790.
As suggested here selenium webdriver chrome 115 stopped working, this works:
service = Service(ChromeDriverManager(version="114.0.5735.90").install())
But that doesn't seem like a good ongoing solution. Is there a better way?