以下のエラーの対処方法
ValueError: There is no such driver by url https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790
issuesで修正されるまでの暫定対処方法がありました。
例えば以下のようにして
https://googlechromelabs.github.io/chrome-for-testing/#stable
から該当のバージョンを保存すれば動きます。
options = webdriver.chrome.options.Options()
new_driver = r'C:\Users\k8uwall\PycharmProjects\sample\data\drivers\chromedriver\win32\115.0.5790.98'
service = ChromeService(executable_path=new_driver)
browser = webdriver.Chrome(service=service, options=options)