selenium之鼠标动作链

定位除了使用xpath,css选择器定位外,还可以使用鼠标动作链来进行定位;

  • 导入模块:from selenium.webdriver import ActionChains
  • 鼠标移动事件:
    • ActionChains(driver).move_to_element(元素的位置).perform()
  • 鼠标左击事件:
    • ActionChains(driver).click(元素的位置).perform()
  • 鼠标左双击事件:
    • ActionChains(driver).double_click(元素的位置).perform()
  • 鼠标右击事件:
    • ActionChains(driver).context_click(元素的位置).perform()
  • 鼠标左击并保持:
    • ActionChains(driver).click_and_hold(元素的位置).perform()
  • 将元素拖到指定元素并松开:
    • ActionChains(driver).drag_and_drop(原元素的位置, 新元素的位置).perform()
  • 将元素拖到指定坐标位置(以当前元素为起点):
    • ActionChains(driver).move_by_offset(x坐标, y坐标).perform()
  • 释放鼠标点击状态:
    • ActionChains(driver).release(xxx).perform()

基础案例:

python 复制代码
import time
from selenium.webdriver import Edge
from selenium.webdriver.common.keys import Keys
# 创建edge浏览器对象
driver = Edge()
# 打开浏览器访问网址
driver.get("https://www.lagou.com/")
# 提取`全国`标签的位置
el = driver.find_element_by_xpath('//*[@id="changeCityBox"]/p[1]/a')  # selenium4.0后废除该方法
# 鼠标点击时间 -- 点击el对象
el.click()
time.sleep(1)
# 找到文本框,输入指定的内容 -- 然后按回车
driver.find_element_by_xpath('//*[@id="search_input"]').send_keys("python", Keys.ENTER)
# 找到元素的所在标签位置 -- 存在li_list列表内
li_list = driver.find_elements_by_xpath('//*[@id="s_position_list"]/ul/li')
# 遍历li_list列表,并取出相应的内容
for li in li_list:
    job_firm = li.find_elements_by_xpath('./div/div[2]/div/a')[0].text
    job_name = li.find_elements_by_tag_name('h3')[0].text
    job_money = li.find_elements_by_xpath('./div/div/div[2]/div/span')[0].text
    print(job_firm, job_name, job_money)
相关推荐
互联网杂货铺1 天前
自动化测试基础知识总结
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
懒笑翻1 天前
Python 使用 Selenuim进行自动化点击入门,谷歌驱动,以百度为例
运维·selenium·自动化
qq_433716952 天前
Selenium+Pytest自动化测试框架 ------ 禅道实战
自动化测试·软件测试·selenium·单元测试·pytest·接口测试·压力测试
LucianaiB2 天前
丹摩|丹摩助力selenium实现大麦网抢票
selenium·测试工具
HKJ_numb12 天前
软件测试 —— 自动化基础
软件测试·selenium·测试工具·自动化
??? Meggie2 天前
【Python】selenium获取定位元素大小、电脑屏幕的像素、屏幕尺寸信息、以及网页尺寸的方法
开发语言·python·selenium
兆。2 天前
Selenium 使用指南:从基础到反爬虫的实践
爬虫·python·selenium·测试工具
_Soy_Milk6 天前
动态网页爬取 —— ajax 与 selenium
selenium·ajax·okhttp
江_小_白6 天前
关于selenium元素找不到的问题(Unable to locate element: {“method“:“xpath“,“selector“:“)
selenium·测试工具
无所事事的海绵宝宝6 天前
selenium元素定位校验以及遇到的元素操作问题记录
python·功能测试·selenium·测试工具