i tried to write script to download mail from gmail using selenium with python,
but when sign in into google via webdriver, all the time chorme is mention "This browser or app may not be secure."
i tried with adding following arguments as well but it's not fixed yet.
options = webdriver.ChromeOptions()
options.add_argument("--incognito")
options.add_argument("--lang=en-us")
options.add_argument("--disable-web-security")
options.add_argument("--allow-running-insecure-content")
**can some one help me to get this solve....