51Testing软件测试论坛

标题: selenium3 qq登录frame操作 [打印本页]

作者: 司格特    时间: 2018-7-3 14:58
标题: selenium3 qq登录frame操作
作者:梦一针
1、登录QQ邮箱
      url='https://mail.qq.com/cgi-bin/loginpage'
用户名,密码分别为u,p,login_button
[attach]116940[/attach]
  1. # _*_ coding:utf-8 _*_
  2. from selenium import  webdriver
  3. from selenium.webdriver.common.action_chains import  ActionChains
  4. import  time
  5. driver = webdriver.Chrome('C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe')
  6. driver.maximize_window()
  7. driver.get('https://mail.qq.com/cgi-bin/loginpage')
  8. time.sleep(5)

  9. driver.find_element_by_name('u').send_keys('2574674466')
  10. driver.find_element_by_name('p').send_keys('')
  11. driver.find_element_by_id('login_button').click()
复制代码

执行后-无法输入用户名,密码
由于登录窗口有-frame,需要先切换-再执行
需要加上:
        
driver.switch_to.frame("login_frame")
[attach]116941[/attach]
  1. driver = webdriver.Chrome('C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe')
  2. driver.maximize_window()
  3. driver.get('https://mail.qq.com/cgi-bin/loginpage')
  4. time.sleep(5)
  5. driver.switch_to.frame("login_frame")
  6. driver.find_element_by_name('u').send_keys('2574674466')
  7. driver.find_element_by_name('p').send_keys('')
  8. driver.find_element_by_id('login_button').click()
复制代码

作者分享:
Selenium3项目实战







欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2