栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

UI自动化+python鼠标事件

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

UI自动化+python鼠标事件

首先先用python打开网站

import  os
from  selenium import  webdriver
from  selenium.webdriver。chrom。service  import  Service
from  selenium.webdriver.common.by  import  By
from  sleenium.webdriver.common.action_chains  import  ActionChains 

chrome_path='webdriver/chromedriver.exe'
driver_service=Service(chrome_path)
driver=webdriver.Chrome(service=driver_service)
driver.get('https://www.baidu.com')
#鼠标事件:

context_click()   右击
double——click()  双击
drag_and_drop()   拖动
move_to_element() 鼠标移动到一个元素上
click——and_hold    按下鼠标左键在一个元素上


#举例
web_element=driver.find_element(By.XPATH,"//a[@name='wd']")
mouse=ActionChains(driver)
mouse.move_to_element(web_element).perform   #写好之后最好perform执行

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/881302.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号