selenium模拟点击

01.ActionChains 类常用方法
click_and_hold(on_element=None) :点击鼠标左键,不松开

context_click(on_element=None):点击鼠标右键

double_click(on_element=None):双击鼠标左键

drag_and_drop(source, target):拖拽到某个元素然后松开

move_by_offset(xoffset, yoffset):鼠标从当前位置移动到某个坐标

move_to_element(to_element) :鼠标移动到某个元素

release(on_element=None):在元素上释放按住的鼠标按钮

pause(seconds):暂停操作(秒)

02.ActionChains 类所有方法
perform(self)–执行鼠标操作方法

reset_actions()–清楚操作子令

click(on_element=None)–点击鼠标左键

click_and_hold(on_element=None):点击鼠标左键,不松开

context_click(on_element=None):点击鼠标右键

double_click(on_element=None):双击鼠标左键

drag_and_drop(source, target):拖拽到某个元素然后松开

drag_and_drop_by_offset(source, xoffset, yoffset) :拖拽到某个坐标然后松开

key_down(value, element=None):按下某个键盘上的

key_up(value, element=None) :松开某个

move_by_offset(xoffset, yoffset):鼠标从当前位置移动到某个坐标

move_to_element(to_element) :鼠标移动到某个元素

move_to_element_with_offset(to_element, xoffset, yoffset):移动到

距某个元素(左上角坐标)多少距离的位置

pause(seconds):暂停操作(秒)

release(on_element=None):在元素上释放按住的鼠标按钮

send_keys(*keys_to_send):发送某个键到当前焦点的元素

send_keys_to_element(element, *keys_to_send) :发送某个键到指定元素

03.ActionChains 使用步骤
实例化:actions = ActionChains(driver)
调用鼠标操作方法:actions.move_to_element(menu)
执行鼠标操作方法:actions.perform()
04.实战
代码做的事情:

打开测试网页:https://www.runoob.com/try/try.php?filename=tryjs_events_mouseover
切换 iframe
定位到绑定鼠标事件的 div
将鼠标移动到 div 上触发事件(可以观察到 div 上字会发生变化)
import time
from selenium import webdriver
from selenium.webdriver import ActionChains
driver = webdriver.Chrome(r"D:\chromeDriver\71\chromedriver71.exe")
driver.implicitly_wait(5)
driver.get(url="https://www.runoob.com/try/try.php?filename=tryjs_events_mouseover")
driver.maximize_window()
#切换iframe
driver.switch_to.frame(driver.find_element_by_xpath('//iframe[@id="iframeResult"]'))
#元素定位
ele = driver.find_element_by_xpath('//div[@οnmοuseοver="mOver(this)"]')
#移动鼠标到元素上触发事件
actions = ActionChains(driver)
actions.move_to_element(ele)
actions.perform()
time.sleep(5)
driver.quit()

import time
from selenium import webdriver
from selenium.webdriver import ActionChains
driver = webdriver.Chrome(r"D:\chromeDriver\71\chromedriver71.exe")
driver.implicitly_wait(5)
driver.get(url="https://www.runoob.com/try/try.php?filename=tryjs_events_mouseover")
driver.maximize_window()
#切换iframe
driver.switch_to.frame(driver.find_element_by_xpath('//iframe[@id="iframeResult"]'))
#元素定位
ele = driver.find_element_by_xpath('//div[@onmouseover="mOver(this)"]')
#移动鼠标到元素上触发事件
actions = ActionChains(driver)
actions.move_to_element(ele)
actions.perform()
time.sleep(5)
driver.quit()


05.总结
ActionChains 类中其他方法使用方式都一样,大家有空可以试一下

ActionChains 类中有很多方法,但是常用的并不多,上面已经列出,掌握常用方法即可

特别注意:ActionChains 的执行原理,当你调用 ActionChains 的方法时,不会立即执行,而是会将所有的操作按顺序存放在一个队列里,当你调用 perform()方法时,队列中的时间会依次执行。

ActionChains 类中的方法可以使用链式调用,大家思考思考自己拓展吧(其实很简单)。(自己存一下)
————————————————

                            版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
                        
原文链接:https://blog.csdn.net/AI_Green/article/details/120911847

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值