0

Here is what it shows me when I try to log in:enter image description here

What options.add_argument arguments should I use? My code:


from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
import time

url = "url"
options = Options()
options.add_argument('--no-sandbox') # Bypass OS security model
options.add_argument("--window-size=1360,768")
driver = webdriver.Chrome(ChromeDriverManager().install(),chrome_options=options)
driver.get(url)

mawerty
  • 37
  • 5
  • Does this answer your question? [“This browser or app may not be secure” error while attempting to login in to Gmail account using GeckoDriver Firefox through Selenium and Python](https://stackoverflow.com/questions/59515561/this-browser-or-app-may-not-be-secure-error-while-attempting-to-login-in-to-gm) – AdamMcKay May 01 '21 at 17:01
  • Nothing worked :( – mawerty May 01 '21 at 17:32
  • I can't see here you tried to insert your google account credentials. – Prophet May 01 '21 at 19:14
  • There are several ways to log into the page I want to log into. Therefore, I want the user to choose the way of logging in and log in by himself after entering the login page. – mawerty May 01 '21 at 20:13

0 Answers0