六、Selenium常用方法:鼠键操作

一、常用的鼠标事件

事件名 描述
click(on_element=None) 鼠标单机操作
click_and_hold(on_element=None) 鼠标单机,并且按住不放
double_click(on_element=None) 鼠标双击
context_click(on_element=None) 鼠标右击
drag_and_drop(source,target) 鼠标拖拽:将 source 元素拖放到 target 元素的位置
drag_and_drop(source,xoffset,yoffset) 将目标拖拽到目标位置 :将 source 元素拖放到 (xOffset, yOffset) 位置,xOffset 为横坐标,yOffset为纵坐标;在这个拖拽的过程中,已经使用到了鼠标的组合动作,首先是鼠标点击并按住 (click-and-hold) source 元素,然后执行鼠标移动动作 (mouse move),移动到 target 元素位置或者是 (xOffset, yOffset) 位置,再执行鼠标的释放动作 (mouse release)。所以上面的方法也可以拆分成以下的几个执行动作来完成: Actions action = new Actions(driver); action.clickAndHold(source).moveToElement(target).perform(); action.release();
key_up(value,on_element=None) 模拟松开某个键
key_down(value,on_element=None) 模拟按住某个键
move_to_element(to_element) 将鼠标移动到指定到某个页面元素
move_to_element_with_offset(to_element,xOffset,yOffset) 鼠标移动至指定的坐标
perform() 将之前所有的ActionChains执行
release(on_element=None) 释放按下的鼠标

二、常用的键盘事件

事件名 描述
Keys.BACK_SPACE 删除键
Keys.SPACE 空格键
Keys.TAB Tab键
Keys.ESCAPE 回退键
Keys.ENTER 回车键
Keys.CONTROL,"a" 组合键Ctrl+A
Keys.CONTROL,"x" 组合键Ctrl+X
Keys.CONTROL,"v" 组合键Ctrl+V
Keys.CONTROL,"c" 组合键Ctrl+C
Keys.F1 F1键
Keys.F12 F2键

三、使用示例(很多事件都封装到了这个类中):

Selenium将鼠标键盘事件都封装到了Action Chains类中
使用Action Chains 需要引入 from selenium.webdriver.common.action_chains import ActionChains

from time import sleep
from selenium.webdriver.common.action_chains import ActionChains
from selenium import webdriver
from selenium.webdriver.support.select import Select

driver = webdriver.Chrome()
driver.maximize_window()
driver.get("https://www.mafengwo.cn")

# 先定位元素
goTravel = driver.find_element_by_class_name("drop-toggle")
# 将鼠标悬停在首页"去旅行"上
ActionChains(driver).move_to_element(goTravel).perform()
# 鼠标悬停时,定位元素,超链接中"自由行",然后单机
driver.find_element_by_xpath('//*[@id="_j_sales_panel"]/ul/li[1]/a').click()

sleep(3)
driver.quit()
Select方法 描述
select_by_index 通过下拉框索引选择
select_by_value 通过下拉框中包含的文字选择
select_by_visible_text 通过下拉框中文案完全匹配获取
all_selected_options 返回下拉框中已经选中的选项。获取后可以遍历
first_selected_options 返回第一个被选中的选项。获取后不可以遍历

使用Select需要引入 from selenium.webdriver.support.select import Select

import time
from time import sleep

from selenium.webdriver.common.action_chains import ActionChains
from selenium import webdriver
from selenium.webdriver.support.select import Select

driver = webdriver.Chrome()
driver.maximize_window()
driver.get("https://www.baidu.com")

# 搜索框中输入马蜂窝,并删除最后一个字符
driver.find_element_by_id("kw").send_keys("马蜂窝"+Keys.BACK_SPACE)

# 先定位元素,设置按钮
tj_settingicon = driver.find_element_by_link_text("设置")
# 将鼠标悬停到设置按钮上
ActionChains(driver).move_to_element(tj_settingicon).perform()
# 点击搜索设置
driver.find_element_by_link_text("搜索设置").click()
time.sleep(3)

# 将每页显示设置选为"每页显示50条"
nr=driver.find_element_by_xpath('//*[@id="nr"]')

# Select(nr).select_by_index(2)
#Select(nr).select_by_value("20")
Select(nr).select_by_visible_text("每页显示50条")

# 返回下拉框中已经选中的选项
ops = Select(nr).all_selected_options
for op in ops:
    print(op.text)

# 返回第一个被选中的选项
fops = Select(nr).first_selected_option
print(fops.text)

sleep(3)
driver.quit()

Selenium 3+Python 3 自动化测试项目实战 从菜鸟到高手 田春成 李靖 /著

你可能感兴趣的:(六、Selenium常用方法:鼠键操作)