So I have the exact same issue with the question listed here
In that question the issue is that the ChromeDriver is version 99, but Chrome is version 98. The accepted answer states that the Chrome Driver is for a version of Chrome that is "not out yet". I am currently using this code to get the latest release of ChromeDriver
# get the latest chrome driver version number
chrome_url = 'https://chromedriver.storage.googleapis.com/LATEST_RELEASE'
response = requests.get(chrome_url)
version_number = response.text
# build the donwload url
download_url = "https://chromedriver.storage.googleapis.com/" + version_number + "/chromedriver_win32.zip"
is there a way to replace the first section in the code with something that will return the current version of chrome?