1. 程式人生 > >python2+selenium+mail,自動登錄126郵箱

python2+selenium+mail,自動登錄126郵箱

def login xxxx AS case ase cas nco 斷言

在進行登錄126郵箱時有幾個坑,要完美避過可以看一下下文,直接上代碼:

#encoding = utf-8

from selenium import webdriver
import unittest
import time
class login126(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Chrome(executable_path = "chromedriver")

def test_login(self):
self.driver.get("https://mail.126.com/")
time.sleep(3)
#此處的登錄框是在iframe裏,所以一定要先進入iframe,然後才能找到元素
self.driver.switch_to.frame(self.driver.find_element_by_xpath(".//*[@id=‘x-URS-iframe‘]"))
time.sleep(3)
#登錄和密碼輸入框要切記不要用ID來進行定位,每次登錄ID都會進行變化的
self.driver.find_element_by_xpath(".//*[@data-placeholder=‘郵箱帳號或手機號‘]").send_keys(‘xxxx‘)
self.driver.find_element_by_xpath(‘//*[@data-placeholder="密碼"]‘).send_keys(‘xxxxx‘)
self.driver.find_element_by_xpath(‘//*[@id="dologin"]‘).click()
## self.driver.switch_to.default_content()
#斷言前要等待頁面加載出來後在進行斷言
time.sleep(10)
assert u‘退出‘ in self.driver.page_source

def tearDown(self):
self.driver.quit()

if __name__ == ‘__main__‘:
unittest.main()

python2+selenium+mail,自動登錄126郵箱