【Python】Selenium
selenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。Selenium的核心Selenium Core基于JsUnit,完全由JavaScript编写,因此可以用于任何支持JavaScript的浏览器上。
基本使用
声明浏览器对象
chrome = webdriver.Chrome()
查找元素
单个元素查找
find_element_by_name()
fine_element_by_id()
find_element_by_xpath()
find_element_by_link_text()
find_element_by_partial_link_text()
find_element_by_tag_name()
find_element_by_class_name()
find_element_by_css_selector()
使用By模块
from selenium.webdriver.common.by import By
input_find = chrome.find_element(By.ID, "kw")
多个元素查找
find_elements
例:
find_elements_by_css_selector('.service-bd li')
元素交互
input_str.clear()
input_str.send_keys("selenium Python")
input_str.click()
https://selenium-python.readthedocs.io/api.html#module-selenium.webdriver.common.action_chains
执行JavaScript
'''
登录知乎,通过js翻到页面底部
'''
from selenium import webdriver
browser = webdriver.Chrome()
browser.get("http://www.zhihu.com/explore")
browser.execute_script('window.scrollTo(0, document.body.scrollHeight)')
browser.execute_script('alert("To Bottom")')
获取元素属性
# get_attribute('class')
chrome.find_element_by_id('zh-top-link-logo').get_attribute('class')
获取文本值
# text
chrome.find_element_by_id('zh-top-link-question').text
获取ID, 位置,标签名
# id location tag_name size
input = chrome.find_element_by_class_name('zh-top-add-question')
print(input.id, input.location, input.tag_name, input.size)
Frame
chrome.switch_to.frame('xxx')
chrome.switch_to.parent_frame()
等待
当使用了隐式等待执行测试的时候,如果 WebDriver没有在 DOM中找到元素,将继续等待,超出设定时间后则抛出找不到元素的异常, 换句话说,当查找元素或元素并没有立即出现的时候,隐式等待将等待一段时间再查找 DOM,默认的时间是0。
隐式等待
到了一定的时间发现元素还没有加载,则继续等待我们指定的时间,如果超过了我们指定的时间还没有加载就会抛出异常,如果没有需要等待的时候就已经加载完毕就会立即执行。
chrome.implicitly_wait(10)
显示等待
指定一个等待条件,并且指定一个最长等待时间,会在这个时间内进行判断是否满足等待条件,如果成立就会立即返回,如果不成立,就会一直等待,直到等待你指定的最长等待时间,如果还是不满足,就会抛出异常,如果满足了就会正常返回。
# EC.presence_of_element_located()是确认元素是否已经出现了
# EC.element_to_be_clickable()是确认元素是否是可点击的
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
browser = webdriver.Chrome()
browser.get('https://www.taobao.com/')
wait = WebDriverWait(browser, 10)
input = wait.until(EC.presence_of_element_located((By.ID, 'q')))
button = wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, '.btn-search')))
常用的判断条件:
title_is 标题是某内容
title_contains 标题包含某内容
presence_of_element_located 元素加载出,传入定位元组,如(By.ID, 'p')
visibility_of_element_located 元素可见,传入定位元组
visibility_of 可见,传入元素对象
presence_of_all_elements_located 所有元素加载出
text_to_be_present_in_element 某个元素文本包含某文字
text_to_be_present_in_element_value 某个元素值包含某文字
frame_to_be_available_and_switch_to_it frame加载并切换
invisibility_of_element_located 元素不可见
element_to_be_clickable 元素可点击
staleness_of 判断一个元素是否仍在DOM,可判断页面是否已经刷新
element_to_be_selected 元素可选择,传元素对象
element_located_to_be_selected 元素可选择,传入定位元组
element_selection_state_to_be 传入元素对象以及状态,相等返回True,否则返回False
element_located_selection_state_to_be 传入定位元组以及状态,相等返回True,否则返回False
alert_is_present 是否出现Alert
更多操作参考:http://selenium-python.readthedocs.io/api.html#module-selenium.webdriver.support.expected_conditions
浏览器的前进与后退
chrome.forward()
chrome.back()
Cookie操作
chrome.get_cookies()
chrome.delete_all_cookies()
chrome.add_cookie()
选项卡管理
chrome.window.open()
all_handles = chrome.window_handles # 获取当所有的句柄
cur_handle = chrome.current_window_handle # 获取当前页面的句柄
chrome.window_handles[0]
异常处理
http://selenium-python.readthedocs.io/api.html#module-selenium.common.exceptions
import unittest
from selenium import webdriver
from selenium.common.exceptions import TimeoutException, NoSuchElementException, NoSuchFrameException
try:
browser = webdriver.Chrome()
browser.get("http://www.runoob.com/try/try.php?filename=jqueryui-api-droppable")
browser.switch_to.frame('iframessseResult')
except TimeoutException as e:
print(e)
except NoSuchFrameException as e:
print(e)
finally:
browser.close()
下一篇: 在Win7系统上安装ccnet 安装笔记