selenium鼠标操作实战

鼠标操作实战

鼠标单击操作 click()

python 复制代码
from selenium import webdriver
from time import sleep

driver = webdriver.Chrome()
driver.get('https://www.baidu.com/')
ele = driver.find_element_by_link_text('新闻')
ele.click()  # 鼠标单击
sleep(2)
driver.quit()

内置鼠标操作包ActionChains

WebDriver封装了一套鼠标操作的包,我们先来看一下鼠标操作的流程。

  • 引入包:from selenium.webdriver.common.action_chains import ActionChains。
  • 定位元素,存储到某个变量:ele = driver.find_element_by_×××('××')。
  • 固定写法:ActionChains(driver).click(ele).perform(),如图 所示。

    ActionChains下的单机鼠标
python 复制代码
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from time import sleep

driver = webdriver.Chrome()
driver.get('https://www.baidu.com/')
ele = driver.find_element_by_link_text('新闻')
# ele.click()  # 鼠标单击
ActionChains(driver).click(ele).perform()
sleep(2)
driver.quit()

鼠标双击操作double_click()

python 复制代码
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.action_chains import ActionChains

driver = webdriver.Chrome()
driver.get("http://sahitest.com/demo/clicks.htm")
ele = driver.find_element_by_xpath('/html/body/form/input[2]')
sleep(2)
# 通过double_click方法来模拟鼠标双击的操作
ActionChains(driver).double_click(ele).perform()
sleep(3)
driver.quit()

鼠标右击操作context_click()

python 复制代码
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.action_chains import ActionChains

driver = webdriver.Chrome()
driver.get("http://sahitest.com/demo/clicks.htm")
ele = driver.find_element_by_xpath('/html/body/form/input[4]')
sleep(2)
# 通过context_click方法模拟鼠标右击的操作
ActionChains(driver).context_click(ele).perform()

sleep(3)
driver.quit()

鼠标指针悬浮操作move_to_element(ele)

python 复制代码
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.action_chains import ActionChains

driver = webdriver.Chrome()
driver.get("http://sahitest.com/demo/mouseover.htm")
ele = driver.find_element_by_xpath('/html/body/form/input[1]')
sleep(2)
# 通过move_to_element方法模拟鼠标指针的悬浮操作
ActionChains(driver).move_to_element(ele).perform()

sleep(3)
driver.quit()

鼠标拖动操作drag_and_drop(source, target)

python 复制代码
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Chrome()
driver.get("http://sahitest.com/demo/dragDropMooTools.htm")
source = driver.find_element_by_xpath('//*[@id="dragger"]')
target = driver.find_element_by_xpath('/html/body/div[5]')

sleep(2)
# 通过drag_and_drop方法模拟鼠标拖动操作
ActionChains(driver).drag_and_drop(source, target).perform()

sleep(3)
driver.quit()

其他鼠标操作汇总

  • 再来总结一下鼠标操作的流程。
    • 引入ActionChains包。
    • 定位要操作的元素。
    • 固定写法:ActionChains(driver).xxx(pars).perform()。
相关推荐
代码欢乐豆4 小时前
数据采集之selenium模拟登录
python·selenium·测试工具
小白学大数据15 小时前
正则表达式在Kotlin中的应用:提取图片链接
开发语言·python·selenium·正则表达式·kotlin
程序员小雷2 天前
软件测试基础:单元测试与集成测试
python·功能测试·selenium·测试工具·单元测试·集成测试·压力测试
程序员小雷2 天前
应对自动化测试中的异步操作:策略与实践
功能测试·selenium·测试工具·jmeter·单元测试·测试用例·postman
墨城烟柳Q2 天前
自动化爬虫-selenium模块万字详解
爬虫·python·selenium·自动化
raoxiaoya2 天前
python安装selenium,geckodriver,chromedriver
开发语言·python·selenium
i道i3 天前
python 爬虫 入门 六、Selenium
爬虫·python·selenium
谷隐凡二3 天前
selenium操作已开启的浏览器,方便调试
selenium·测试工具
钱钱钱端3 天前
UI自动化测试 —— CSS元素定位实践!
css·功能测试·selenium·测试工具·jmeter·ui·postman
保护小周ღ4 天前
【Web自动化】探索Selenium与WebDriver的核心原理
selenium·自动化