python2+selenium+mail,自动登录126邮箱
在进行登录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()
上一篇: html+css让网页自动适应手机屏幕
下一篇: js调用摄像头
推荐阅读
-
Python自动登录126邮箱的方法
-
Python自动登录126邮箱的方法
-
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍
-
python2+selenium+mail,自动登录126邮箱
-
bat批处理一键登录网易163和126邮箱
-
python+opencv+selenium自动化登录邮箱并解决滑动验证的问题
-
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍
-
c#通过126邮箱自动发送 微信端实现QQ邮箱邮件提醒
-
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍
-
php 模拟GMAIL,HOTMAIL(MSN),YAHOO,163,126邮箱登录的详细介绍_php技巧