51Testing软件测试论坛

标题: web自动化测试之web自动化中操作要点 [打印本页]

作者: lsekfe    时间: 2022-3-2 09:50
标题: web自动化测试之web自动化中操作要点
 1、切换iframe:
driver.switch_to.frame(' xxx')  

2、浏览器向右移动页面(浏览器中执行JavaScript代码)  

driver.execute_script('window.scrollBy(200,0)')      # window.scrollBy(x,y)

 3、driver.implicitly_wait()和time.sleep()的区别
  driver.implicitly_wait(10)   #设置寻找元素最大等待时间;
  implicitly_wait(5)属于隐式等待,5秒钟内只要找到了元素就开始执行,5秒钟后未找到,就超时;
  time.sleep(5)表示必须等待5秒定位。

  4、切换到新的目标窗口
 #切换webdriver到新的目标窗口
  for handle in driver.window_handles:
      driver.switch_to.window(handle)
      #判断是否进行了目标窗口
      title=driver.title
      if 'xxxxx' in title:
          break

5、当页面广告遮挡了元素,可将页面广告元素删除

element=driver.find_element_by_css_selector('#meiqia-container iframe[name=chat]')
  driver.execute_script('$(arguments[0]).remove()',element)    #将element传给了arguments[0]
  time.sleep(2)

6、切换浏览器标签页
  使用switch_to_window(window),搭配句柄window_handles、current_window_handle使用。
  1. import time
  2.   from selenium import webdriver
  3.   driver = webdriver.Chrome()
  4.   driver.get("http://www.baidu.com")
  5.   driver.implicitly_wait(10)
  6.   driver.find_element_by_id("kw").send_keys("python")
  7.   driver.find_element_by_id("su").click()
  8.   driver.find_element_by_xpath("//*[@id='2']/h3/a").click()
  9.   #获取当前窗口所有句柄
  10.   all_windows = driver.window_handles
  11.   #获取当前标签页窗口句柄
  12.   current_window = driver.current_window_handle
  13.   #切换标签页窗口
  14.   for window in all_windows:
  15.   if window !=current_window:
  16.   print("切换前的窗口名称是:",driver.title)
  17.   driver.switch_to_window(window)
  18.   time.sleep(2)
  19.   print("切换后的窗口名称是:",driver.title)
  20.   break
复制代码
 7、切换iframe页面
  使用switch_to_frame()、switch_to_default_content(),一般成套使用更好,以防止未切回导致定位失败。
  1.  import time
  2.   from selenium import webdriver
  3.   driver = webdriver.Chrome()
  4.   driver.get("https://ke.qq.com/")
  5.   driver.implicitly_wait(10)
  6.   #点击登录
  7.   driver.find_element_by_class_name("btn-default").click()
  8.   time.sleep(0.5)
  9.   driver.find_element_by_xpath("//*[@class='js-btns-enter btns-enter btns-enter-qq']").click()
  10.   time.sleep(2)
  11.   #点击账号密码登录
  12.   #这里直接定位会失败,需要切换到登录弹窗页面后再进行定位,习惯使用的是2种切换方式
  13.   #1.iframe有唯一名称
  14.   driver.switch_to_frame("login_frame_qq")
  15.   driver.find_element_by_id("switcher_plogin").click()
  16.   driver.find_element_by_id("u").send_keys("123456789")
  17.   #回切到主页面
  18.   driver.switch_to_default_content()
  19.   time.sleep(2)
  20.   #2.iframe无名字,使用下标进行切换,且下标从0开始
  21.   #在页面中查到到当前需要定位的iframe在第3个,所以下标是2
  22.   #再次切换到弹窗页面
  23.   driver.switch_to_frame(2)
  24.   driver.find_element_by_id("p").send_keys("123456789")
  25.   driver.find_element_by_id("login_button").click()
  26.   driver.switch_to_default_content()
  27.   time.sleep(5)
  28.   driver.quit()
复制代码
8、处理弹窗
  使用switch_to_alert()中的accept()、dismiss()、send_keys、text进行操作,弹窗一般有三种类型,①.只有确认按钮的;②.有确认/取消按钮的;③.需要输入文字的。
  1.  import time
  2.   from selenium import webdriver
  3.   driver = webdriver.Chrome()
  4.   driver.get("http://www.baidu.com")
  5.   driver.implicitly_wait(10)
  6.   #创建一个测试弹窗
  7.   driver.execute_script("window.alert('这是一个测试弹窗')")
  8.   time.sleep(2)
  9.   #1.弹窗中只有确认按钮的
  10.   driver.switch_to_alert().accept()
  11.   time.sleep(1)
  12.   #2.弹窗中有确认/取消按钮的
  13.   driver.execute_script("window.alert('这是一个测试弹窗')")
  14.   time.sleep(3)
  15.   #点击取消
  16.   driver.switch_to_alert().dismiss()
  17.   time.sleep(1)
  18.   #弹窗中需要输入文字的
  19.   # driver.switch_to_alert().send_keys("测试测试测试")
  20.   #获取弹窗中的内容
  21.   driver.execute_script("window.alert('这是一个测试弹窗')")
  22.   res = driver.switch_to_alert().text
  23.   print(res)
复制代码











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