Python Selenium Webdriver常用方法总结

常用方法函数

  1. 加载浏览器驱动: webdriver.Firefox()
  2. 打开页面:get()
  3. 关闭浏览器:quit()
  4. 最大化窗口: maximize_window()
  5. 设置窗口参数:set_window_size(600,800)
  6. 后退到前一页: back()
  7. 前进到后一页: forward()
  8. 刷新页面: refresh()
  9. 元素定位:
    • id定位:find_element_by_id()
    • name定位:find_element_by_name()
    • class定位:find_element_by_class()
    • tag定位:find_element_by_tag_name()
    • link定位:find_element_by_link_text()
    • partial link 定位: find_element_by_partial_link_text()
    • CSS定位:find_element_by_css_selector()
    • Xpath定位:
      • 绝对路径:find_element_by_xpath("/html/body/div[x]/div[x]/div/div/dl[x]/dt/a")
      • 元素属性:find_element_by_xpath("//unput[@id=‘kw’]")
      • 层级与属性结合:find_element_by_xpath("//form[@id=‘loginForm’]/ul/input[1]")
      • 逻辑运算符:find_element_by_xpath("//input[@id=‘kw’ [email protected]=‘s_ipt’]")
  10. 清除文本:clear()
  11. 模拟按键输入:send_keys(*value)11.模拟按键输入:send_keys(*value)
  12. 单击元素:click()
  13. 提交表单(相当于"回车"):submit()
  14. 鼠标事件:
#coding:utf-8
from selenium.webdriver.common.action_chains import ActionChains

ActionChains(driver).***opration(opra)*** .perform()

elemengt = driver.find_element_by_xpath("xpath")
ActionChains(driver).    double_click(DoubleClick)     .perform()#双击
ActionChains(driver).    context_click(RightClick)     .perform()#右击
ActionChains(driver).    drag_and_drop(Start, End)     .perform()#拖放
ActionChains(driver).    move_to_element(Above)         .perform()#悬停
ActionChains(driver).    click_and_hold(leftclick)     .perform()#按下

键盘相关:

  1. 键盘事件:
    send_keys(Keys.BACK_SPACE) = BackSpace
    send_keys(Keys.SPACE) = Space
    send_keys(Keys.TAB) = Tab
    send_keys(Keys.ESCAPE) = Esc
    send_keys(Keys.ENTER) = Enter
    send_keys(Keys.CONTROL,‘a’) = Ctrl+A
    send_keys(Keys.F1) = 键盘F1
  2. 元素等待:
    • 显示等待
#coding=utf-8
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

base_url = "http://www.baidu.com"
driver = webdriver.Firefox()
driver.implicitly_wait(5)
‘‘‘隐式等待和显示等待都存在时,超时时间取二者中较大的‘‘‘
locator = (By.ID,‘kw‘)
driver.get(base_url)

WebDriverWait(driver,10).until(EC.title_is(u"百度一下,你就知道"))
‘‘‘判断title,返回布尔值‘‘‘

WebDriverWait(driver,10).until(EC.title_contains(u"百度一下"))
‘‘‘判断title,返回布尔值‘‘‘

WebDriverWait(driver,10).until(EC.presence_of_element_located((By.ID,‘kw‘)))
‘‘‘判断某个元素是否被加到了dom树里,并不代表该元素一定可见,如果定位到就返回WebElement‘‘‘

WebDriverWait(driver,10).until(EC.visibility_of_element_located((By.ID,‘su‘)))
‘‘‘判断某个元素是否被添加到了dom里并且可见,可见代表元素可显示且宽和高都大于0‘‘‘

WebDriverWait(driver,10).until(EC.visibility_of(driver.find_element(by=By.ID,value=‘kw‘)))
‘‘‘判断元素是否可见,如果可见就返回这个元素‘‘‘

WebDriverWait(driver,10).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR,‘.mnav‘)))
‘‘‘判断是否至少有1个元素存在于dom树中,如果定位到就返回列表‘‘‘

WebDriverWait(driver,10).until(EC.visibility_of_any_elements_located((By.CSS_SELECTOR,‘.mnav‘)))
‘‘‘判断是否至少有一个元素在页面中可见,如果定位到就返回列表‘‘‘

WebDriverWait(driver,10).until(EC.text_to_be_present_in_element((By.XPATH,"//*[@id=‘u1‘]/a[8]"),u‘设置‘))
‘‘‘判断指定的元素中是否包含了预期的字符串,返回布尔值‘‘‘

WebDriverWait(driver,10).until(EC.text_to_be_present_in_element_value((By.CSS_SELECTOR,‘#su‘),u‘百度一下‘))
‘‘‘判断指定元素的属性值中是否包含了预期的字符串,返回布尔值‘‘‘

#WebDriverWait(driver,10).until(EC.frame_to_be_available_and_switch_to_it(locator))
‘‘‘判断该frame是否可以switch进去,如果可以的话,返回True并且switch进去,否则返回False‘‘‘
#注意这里并没有一个frame可以切换进去

WebDriverWait(driver,10).until(EC.invisibility_of_element_located((By.CSS_SELECTOR,‘#swfEveryCookieWrap‘)))
‘‘‘判断某个元素在是否存在于dom或不可见,如果可见返回False,不可见返回这个元素‘‘‘
#注意#swfEveryCookieWrap在此页面中是一个隐藏的元素

WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[@id=‘u1‘]/a[8]"))).click()
‘‘‘判断某个元素中是否可见并且是enable的,代表可点击‘‘‘
driver.find_element_by_xpath("//*[@id=‘wrapper‘]/div[6]/a[1]").click()
#WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[@id=‘wrapper‘]/div[6]/a[1]"))).click()

#WebDriverWait(driver,10).until(EC.staleness_of(driver.find_element(By.ID,‘su‘)))
‘‘‘等待某个元素从dom树中移除‘‘‘
#这里没有找到合适的例子

WebDriverWait(driver,10).until(EC.element_to_be_selected(driver.find_element(By.XPATH,"//*[@id=‘nr‘]/option[1]")))
‘‘‘判断某个元素是否被选中了,一般用在下拉列表‘‘‘

WebDriverWait(driver,10).until(EC.element_selection_state_to_be(driver.find_element(By.XPATH,"//*[@id=‘nr‘]/option[1]"),True))
‘‘‘判断某个元素的选中状态是否符合预期‘‘‘

WebDriverWait(driver,10).until(EC.element_located_selection_state_to_be((By.XPATH,"//*[@id=‘nr‘]/option[1]"),True))
‘‘‘判断某个元素的选中状态是否符合预期‘‘‘
driver.find_element_by_xpath(".//*[@id=‘gxszButton‘]/a[1]").click()

instance = WebDriverWait(driver,10).until(EC.alert_is_present())
‘‘‘判断页面上是否存在alert,如果有就切换到alert并返回alert的内容‘‘‘
print(instance.text)
instance.accept()

driver.close()

2. 隐式等待

from selenium.common.exceptions import NoSuchElementException
drive.implicitly_wait(10)

表单窗口相关操作

  1. 多表单切换:switch_to.frame()
  2. 多窗口切换:switch_to.window()
    当前句柄:current_window_handle
    所有句柄:window_handles
  3. 警告框处理:switch_to_alert()
    text:返回所有alert/confirm/prompt中的文字信息
    accept():接受现有警告框
    dismiss():解散现有警告框
    send_keys(keysToSend):发送文本至警告框
  4. cookie处理:
    get_cookies():获得所有cookie信息
    get_cookie(name):返回字典的key为“name”的cookie信息
    add_cookie(cookie_dict):添加cookie。“cookie_dict”指字典对象,必须有name和value值
    delete_cookie(name,optionsString):删除cookie信息。“name”是要删除的cookie的名称,“optionsString”是该cookie的选项,目前支持的选项包括“路径”,“域”
    delete_all_cookies():删除所有cookie信息
  5. 窗口截图:get_screenshot_as_file()
  6. 关闭窗口:close()
  7. 生成随机数:radint()
  8. 获得title并打印
#coding:utf-8
from selenium import webdriver

title = driver.title
print(title)

if title == u"百度一下,你就知道":#比较title
  print("title yes!")
else:
print("title no!")

url = driver.current_url#获得当前URL并打印
print(url)

9.滚动条设置(2种方式):

# 使用scrollTop滑动到底部
js = "var action=document.documentElement.scrollTop=10000"
driver.execute_script(js)

# 使用scrollTo设置位置
driver.set_window_size(600, 600)
js = "window.scrollTo(100,450);"
driver.execute_script(js)

常用方法函数

  1. 加载浏览器驱动: webdriver.Firefox()
  2. 打开页面:get()
  3. 关闭浏览器:quit()
  4. 最大化窗口: maximize_window()
  5. 设置窗口参数:set_window_size(600,800)
  6. 后退到前一页: back()
  7. 前进到后一页: forward()
  8. 刷新页面: refresh()
  9. 元素定位:
    • id定位:find_element_by_id()
    • name定位:find_element_by_name()
    • class定位:find_element_by_class()
    • tag定位:find_element_by_tag_name()
    • link定位:find_element_by_link_text()
    • partial link 定位: find_element_by_partial_link_text()
    • CSS定位:find_element_by_css_selector()
    • Xpath定位:
      • 绝对路径:find_element_by_xpath("/html/body/div[x]/div[x]/div/div/dl[x]/dt/a")
      • 元素属性:find_element_by_xpath("//unput[@id=‘kw’]")
      • 层级与属性结合:find_element_by_xpath("//form[@id=‘loginForm’]/ul/input[1]")
      • 逻辑运算符:find_element_by_xpath("//input[@id=‘kw’ [email protected]=‘s_ipt’]")
  10. 清除文本:clear()
  11. 模拟按键输入:send_keys(*value)11.模拟按键输入:send_keys(*value)
  12. 单击元素:click()
  13. 提交表单(相当于"回车"):submit()
  14. 鼠标事件:
    #coding:utf-8
    from selenium.webdriver.common.action_chains import ActionChains
    
    ActionChains(driver).***opration(opra)*** .perform()
    
    elemengt = driver.find_element_by_xpath("xpath")
    ActionChains(driver).	double_click(DoubleClick) 	.perform()#双击
    ActionChains(driver).	context_click(RightClick) 	.perform()#右击
    ActionChains(driver).	drag_and_drop(Start, End) 	.perform()#拖放
    ActionChains(driver).	move_to_element(Above) 		.perform()#悬停
    ActionChains(driver).	click_and_hold(leftclick) 	.perform()#按下
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
  15. 键盘事件:
    send_keys(Keys.BACK_SPACE) = BackSpace
    send_keys(Keys.SPACE) = Space
    send_keys(Keys.TAB) = Tab
    send_keys(Keys.ESCAPE) = Esc
    send_keys(Keys.ENTER) = Enter
    send_keys(Keys.CONTROL,‘a’) = Ctrl+A
    send_keys(Keys.F1) = 键盘F1
  16. 元素等待:
    • 显示等待

      #coding=utf-8
      from selenium import webdriver
      from selenium.webdriver.common.by import By
      from selenium.webdriver.support.ui import WebDriverWait
      from selenium.webdriver.support import expected_conditions as EC
      
      base_url = "http://www.baidu.com"
      driver = webdriver.Firefox()
      driver.implicitly_wait(5)
      ‘‘‘隐式等待和显示等待都存在时,超时时间取二者中较大的‘‘‘
      locator = (By.ID,‘kw‘)
      driver.get(base_url)
      
      WebDriverWait(driver,10).until(EC.title_is(u"百度一下,你就知道"))
      ‘‘‘判断title,返回布尔值‘‘‘
      
      WebDriverWait(driver,10).until(EC.title_contains(u"百度一下"))
      ‘‘‘判断title,返回布尔值‘‘‘
      
      WebDriverWait(driver,10).until(EC.presence_of_element_located((By.ID,‘kw‘)))
      ‘‘‘判断某个元素是否被加到了dom树里,并不代表该元素一定可见,如果定位到就返回WebElement‘‘‘
      
      WebDriverWait(driver,10).until(EC.visibility_of_element_located((By.ID,‘su‘)))
      ‘‘‘判断某个元素是否被添加到了dom里并且可见,可见代表元素可显示且宽和高都大于0‘‘‘
      
      WebDriverWait(driver,10).until(EC.visibility_of(driver.find_element(by=By.ID,value=‘kw‘)))
      ‘‘‘判断元素是否可见,如果可见就返回这个元素‘‘‘
      
      WebDriverWait(driver,10).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR,‘.mnav‘)))
      ‘‘‘判断是否至少有1个元素存在于dom树中,如果定位到就返回列表‘‘‘
      
      WebDriverWait(driver,10).until(EC.visibility_of_any_elements_located((By.CSS_SELECTOR,‘.mnav‘)))
      ‘‘‘判断是否至少有一个元素在页面中可见,如果定位到就返回列表‘‘‘
      
      WebDriverWait(driver,10).until(EC.text_to_be_present_in_element((By.XPATH,"//*[@id=‘u1‘]/a[8]"),u‘设置‘))
      ‘‘‘判断指定的元素中是否包含了预期的字符串,返回布尔值‘‘‘
      
      WebDriverWait(driver,10).until(EC.text_to_be_present_in_element_value((By.CSS_SELECTOR,‘#su‘),u‘百度一下‘))
      ‘‘‘判断指定元素的属性值中是否包含了预期的字符串,返回布尔值‘‘‘
      
      #WebDriverWait(driver,10).until(EC.frame_to_be_available_and_switch_to_it(locator))
      ‘‘‘判断该frame是否可以switch进去,如果可以的话,返回True并且switch进去,否则返回False‘‘‘
      #注意这里并没有一个frame可以切换进去
      
      WebDriverWait(driver,10).until(EC.invisibility_of_element_located((By.CSS_SELECTOR,‘#swfEveryCookieWrap‘)))
      ‘‘‘判断某个元素在是否存在于dom或不可见,如果可见返回False,不可见返回这个元素‘‘‘
      #注意#swfEveryCookieWrap在此页面中是一个隐藏的元素
      
      WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[@id=‘u1‘]/a[8]"))).click()
      ‘‘‘判断某个元素中是否可见并且是enable的,代表可点击‘‘‘
      driver.find_element_by_xpath("//*[@id=‘wrapper‘]/div[6]/a[1]").click()
      #WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//*[@id=‘wrapper‘]/div[6]/a[1]"))).click()
      
      #WebDriverWait(driver,10).until(EC.staleness_of(driver.find_element(By.ID,‘su‘)))
      ‘‘‘等待某个元素从dom树中移除‘‘‘
      #这里没有找到合适的例子
      
      WebDriverWait(driver,10).until(EC.element_to_be_selected(driver.find_element(By.XPATH,"//*[@id=‘nr‘]/option[1]")))
      ‘‘‘判断某个元素是否被选中了,一般用在下拉列表‘‘‘
      
      WebDriverWait(driver,10).until(EC.element_selection_state_to_be(driver.find_element(By.XPATH,"//*[@id=‘nr‘]/option[1]"),True))
      ‘‘‘判断某个元素的选中状态是否符合预期‘‘‘
      
      WebDriverWait(driver,10).until(EC.element_located_selection_state_to_be((By.XPATH,"//*[@id=‘nr‘]/option[1]"),True))
      ‘‘‘判断某个元素的选中状态是否符合预期‘‘‘
      driver.find_element_by_xpath(".//*[@id=‘gxszButton‘]/a[1]").click()
      
      instance = WebDriverWait(driver,10).until(EC.alert_is_present())
      ‘‘‘判断页面上是否存在alert,如果有就切换到alert并返回alert的内容‘‘‘
      print(instance.text)
      instance.accept()
      
      driver.close()
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15
      • 16
      • 17
      • 18
      • 19
      • 20
      • 21
      • 22
      • 23
      • 24
      • 25
      • 26
      • 27
      • 28
      • 29
      • 30
      • 31
      • 32
      • 33
      • 34
      • 35
      • 36
      • 37
      • 38
      • 39
      • 40
      • 41
      • 42
      • 43
      • 44
      • 45
      • 46
      • 47
      • 48
      • 49
      • 50
      • 51
      • 52
      • 53
      • 54
      • 55
      • 56
      • 57
      • 58
      • 59
      • 60
      • 61
      • 62
      • 63
      • 64
      • 65
      • 66
      • 67
      • 68
      • 69
      • 70
      • 71
      • 72
      • 73
    • 隐式等待
      from selenium.common.exceptions import NoSuchElementException
      drive.implicitly_wait(10)
      
      • 1
      • 2
  17. 多表单切换:switch_to.frame()
  18. 多窗口切换:switch_to.window()
    当前句柄:current_window_handle
    所有句柄:window_handles
  19. 警告框处理:switch_to_alert()
    text:返回所有alert/confirm/prompt中的文字信息
    accept():接受现有警告框
    dismiss():解散现有警告框
    send_keys(keysToSend):发送文本至警告框
  20. cookie处理:
    get_cookies():获得所有cookie信息
    get_cookie(name):返回字典的key为“name”的cookie信息
    add_cookie(cookie_dict):添加cookie。“cookie_dict”指字典对象,必须有name和value值
    delete_cookie(name,optionsString):删除cookie信息。“name”是要删除的cookie的名称,“optionsString”是该cookie的选项,目前支持的选项包括“路径”,“域”
    delete_all_cookies():删除所有cookie信息
  21. 窗口截图:get_screenshot_as_file()
  22. 关闭窗口:close()
  23. 生成随机数:radint()
  24. 获得title并打印
    #coding:utf-8
    from selenium import webdriver
    
    title = driver.title
    print(title)
    
    if title == u"百度一下,你就知道":#比较title
      print("title yes!")
    else:
    print("title no!")
    
    url = driver.current_url#获得当前URL并打印
    print(url)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
  25. 滚动条设置(2种方式):
    # 使用scrollTop滑动到底部
    js = "var action=document.documentElement.scrollTop=10000"
    driver.execute_script(js)
    
    # 使用scrollTo设置位置
    driver.set_window_size(600, 600)
    js = "window.scrollTo(100,450);"
    driver.execute_script(js)

原文地址:https://www.cnblogs.com/111testing/p/10868841.html

时间: 2024-10-26 01:41:42

Python Selenium Webdriver常用方法总结的相关文章

python+selenium webdriver 自动化测试(一)

作为一个刚刚接触python,第一次编程,第一次试着去做自动化的小渣渣,借此地来见证自己的进步,也许每一步对于别人来说微不足道, 但是对于自己来说,是无数次思考之后才能迈出的一步,很吃力,也同样很欣慰.废话不多说,进入主题. 我用的是python+selenium webdriver来搭建自动化框架,对于python语言,不熟悉,只是粗略的看了一遍书,不知道该编什么,也不知道怎么编,请教大牛后,直接上路,不纠结,实战中可以学会更多.推荐一本书,虫师的<selenium webdriver (py

python selenium API 常用方法

配置使用环境 下载相应的浏览器驱动, Firefox 是默认的 本文以 chrome 为主 ,放在scripts目录下ChromeDriver 官方下载地址 : 所有版本的 ChromeDriver 文档参考 简明 Python 教程 Python教程 - 廖雪峰 官方文档 : Selenium with Python webdriver实用指南python版本 一份简单的测试 demo 关于 360 haosou.com 的测试 : 1 #coding=utf-8 2 from seleniu

用Python selenium+webdriver的一个简单的登录自动化测试--豆丁网登录测试

#coding=utf-8 from selenium import webdriver #from selenium.webdriver.remote import switch_to #from selenium.webdriver.common import alert #import unittest  import time,os def users_zidian():  #用户名用例用一个字典实现参数化调用#     users={'zhengshuheng':'123456','[

python selenium webdriver处理浏览器滚动条

用键盘右下角的UP,DOWN按键来处理页面滚动条 这种方法很灵活用起来很方便!!!! from selenium import webdriver import time from selenium.webdriver.common.keys import Keys #访问百度 driver=webdriver.Chrome() driver.get("http://www.baidu.com") #搜索 driver.find_element_by_id("kw"

python+selenium webdriver 如何处理table

Table对象是自动化测试中经常需要处理的对象.由于webdriver中没有专门的table类,所以我们需要简单的封装出一个易用易扩展的Table类来帮助简化代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

python+selenium—webdriver入门(二)

本文中主要介绍webdriver常见的对象定位方法: 一.对象定位的目的 二.常见的对象定位方法 一.对象定位的目的: 1.操作对象 2.获得对象的属性,如:对象的class属性.name属性等 3.获得对象的text 4.获取对象的数量 二.常见的对象定位方法: 1.find element方法: 1.id 2.name 3.class name 4.tag name 5.css定位 6.xpath定位 7.link text 8.partial link text 1 # !/usr/bin

python+selenium—webdriver入门(一)

一.浏览器最大化 二.设置浏览器分辨率大小 三.打印页面title 四.打印URL 五.控制浏览器前进或后退 #!/usr/bin/env python#-*- coding:utf-8 -*- from selenium import webdriverimport time browser = webdriver.Firefox() #浏览器最大化 browser.maximize_window() #设置浏览器分辨率大小browser.set_window_size(800,600) #访

Python selenium+webdriver 自动化测试例子

#coding=utf-8 from selenium import webdriver #引入selnium模块的webdriver包# import time #引入time函数# browser=webdriver.Firefox() #初始化打开Firefox浏览器# browser.get(") #打开百度网站#   time.sleep(0.3)#休眠0.3秒# browser.find_element_by_id("kw").send_keys("se

python + selenium webdriver 自动化测试 之 环境异常处理 (持续更新)

1.webdriver版本与浏览器版本不匹配,在执行的时候会抛出如下错误提示 selenium.common.exceptions.WebDriverException: Message: unknown error: call function result missing 'value' 解决方案 下载匹配的webdriver放到python的执行文件夹下,替换原来的webdriver文件即可. 原文地址:https://www.cnblogs.com/hades/p/8926095.htm