Python selenium ile gmail giriş yaparken hata alıyorum

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from webdriver_manager.chrome import  ChromeDriverManager
import time

#ChromeDriverManager().install()

browser = webdriver.Chrome()
headers= {"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36"}

url = "https://10fastfingers.com/typing-test/turkish"
url2 = "https://accounts.google.com/o/oauth2/auth/identifier?response_type=code&access_type=offline&client_id=451050238842-stelcbipu0o33seaasv3sd3gt8ktilti.apps.googleusercontent.com&redirect_uri=https%3A%2F%2F10fastfingers.com%2Faccount%2Fgoogle_oauth2callback&state&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&approval_prompt=auto&flowName=GeneralOAuthFlow"
browser.get(url2)

time.sleep(1)

input_alani = browser.find_element_by_xpath("//*[@id='identifierId']")
input_alani.send_keys("ozay.tepe12@gmail.com")
time.sleep(1)

input_giris = browser.find_element_by_xpath("//*[@id='identifierNext']/div/button/span")
input_giris.click()

#ozay.tepe12@gmail.com


Arkadaşlar gmail hesabımı girer girmez şu hatayı alıyorum mini bir browser yapmadan çözüm yolu var mıdır ?

Aynı sorunun kurbanıyız :slight_smile:

zaman soğutuyor insanı bu tür şeyler.

Aynen öyle. insanı delirtiyor

Chrome yerine Firefox ile deneyin, buyuk ihtimal cozulecektir.

1 Beğeni