Em là new bie mong pro các chỉ giáo giúp với ạ. Em có 1 file gmail list.txt dạng (username:password)
Em cần check xem pass đúng hoặc sai của cả list thì nên code ntn cho hợp lí ạ. Thanks !
Mới code được như bên dưới, mong các cao nhân sửa giúp ạ :
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get("https://mail.google.com/mail/u/0/#inbox")
driver.find_element_by_xpath('//*[@id="identifierId"]').click()
driver.find_element_by_xpath('//input[@type="email"]').send_keys('[email protected]')
driver.find_element_by_xpath('//*[@id="identifierNext"]/span/span').click()
time.sleep(5)
driver.find_element_by_xpath('//*[@id="password"]/div[1]/div/div[1]/input').click()
driver.find_element_by_name("password").send_keys('Jayte90')
driver.find_element_by_xpath('//*[@id="passwordNext"]/span/span').click()
time.sleep(5)
driver.get("https://accounts.google.com/SignOutOptions?hl=en&continue=https://mail.google.com/mail&service=mail")
driver.find_element_by_xpath('//button[normalize-space()="Sign out"]').click()