Abhilash Datta
Results
2
comments of
Abhilash Datta
I never encountered that while developing, so I didn't include that in the pipeline or handled any exceptions for it. You have to disable the password-saving feature permanently for your...
You can add the code in the constructor of the Bot class. ``` class Bot(): def __init__(self): chrome_opt = webdriver.ChromeOptions() prefs = {"credentials_enable_service", False} prefs = {"profile.password_manager_enabled" : False} chrome_opt.add_experimental_option("prefs",...