click_and_hold – Selenium Python中的动作链
Selenium 的Python模块是为使用Python执行自动化测试而构建的。 ActionChains 是一种自动化低级交互的方法,例如鼠标移动、鼠标按钮操作、按键和上下文菜单交互。这对于执行更复杂的操作(例如悬停和拖放)很有用。高级脚本使用动作链方法,我们需要拖动元素、单击元素、双击等。
本文围绕Python Selenium中的 Action Chains 上的click_and_hold
方法展开。 click_and_hold
方法用于在元素上按住鼠标左键。
句法 -
click_and_hold(on_element=None)
精氨酸——
on_element
: 鼠标按下的元素。如果没有,点击当前鼠标位置。例子 -
要找到一个元素,需要使用其中一种定位策略,例如,
element = driver.find_element_by_id("passwd-id")
element = driver.find_element_by_name("passwd")
现在可以使用 click_and_hold 方法作为一个动作链,如下所示——
click_and_hold(on_element=element)
如何在Selenium Python中使用 click_and_hold 动作链方法?
为了演示, Selenium Python中 Action Chains 的click_and_hold
方法。让我们访问 https://www.geeksforgeeks.org/ 并对元素进行操作。
程序 -
# import webdriver
from selenium import webdriver
# import Action chains
from selenium.webdriver.common.action_chains import ActionChains
# create webdriver object
driver = webdriver.Firefox()
# get geeksforgeeks.org
driver.get("https://www.geeksforgeeks.org/")
# get element
element = driver.find_element_by_link_text("Courses")
# create action chain object
action = ActionChains(driver)
# click and hold the item
action.click_and_hold(on_element = element)
# perform the operation
action.perform()
输出 -
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。