I'm trying to make a bot to automaticly use Google Play Gift Card on accounts. But I can't login. When I run my code Google says this browser is not secure. I tried using chromedriver and geckcodriver but didn't change anything. I tried using webbot instead of selenium but results are still the same. I even tried to open selenium webdriver and do everything manually but still gives the same error.
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://google.com")
driver.find_element_by_xpath('//*[@id="gb_70"]').click() #hit login button
driver.find_element_by_xpath('//*[@id="identifierId"]').send_keys("username") #type username
driver.find_element_by_xpath('//*[contains(text(), "İleri")]').click() #hit next(my language is different so İleri instead of Next)