
Modify your code to include the following options when initializing the WebDriver:Ĭhrome_options = webdriver.ChromeOptions()Ĭhrome_options.add_argument("-log-path=D:\\qc1.log")ĭriver = webdriver.Chrome(options=chrome_options) Enable verbose logging: To troubleshoot the issue, you can enable verbose logging for Chrome and the WebDriver. WebDriver updates often include bug fixes and compatibility improvements, so keeping it up to date can help prevent issues with Chrome updates.ģ. Update WebDriver: Regularly check for updates to the WebDriver and update it accordingly. You mentioned that the latest WebDriver version available is 1.90, so make sure you're using that version.Ģ. It's important to use a compatible WebDriver version to ensure smooth functioning. Ensure WebDriver compatibility: Check the compatibility between the version of Chrome you're using (1.199) and the corresponding version of the WebDriver. To troubleshoot and potentially prevent this recurring behavior, here are some suggestions:ġ.

It seems like you're experiencing issues with your Python script that performs auto-login and automation on a website, particularly when there are updates to Chrome or the WebDriver.
