📜  reset_actions 方法Selenium Python中的动作链

📅  最后修改于: 2022-05-13 01:55:41.261000             🧑  作者: Mango

reset_actions 方法Selenium Python中的动作链

Selenium 的Python模块是为使用Python执行自动化测试而构建的。 ActionChains 是一种自动化低级交互的方法,例如鼠标移动、鼠标按钮操作、按键和上下文菜单交互。这对于执行更复杂的操作(例如悬停和拖放)很有用。高级脚本使用动作链方法,我们需要拖动元素、单击元素、双击等。
本文围绕Python Selenium中动作链的reset_actions方法展开。 reset_actions 方法清除已存储在本地和远程端的操作。这是最常用的方法之一,因为在一些操作之后,需要重置动作实例才能执行下一个操作。

句法 -

reset_actions

例子 -


要找到一个元素,需要使用其中一种定位策略,例如,

element = driver.find_element_by_id("passwd-id")
another_element = driver.find_element_by_name("passwd")

现在可以使用 reset_actions 方法作为一个动作链,如下所示 -

action.click(on_element = element)
action.reset_actions()
action.click(on_element = another_element)

如何在Selenium Python中使用 reset_actions Action Chain 方法?

为了演示, Selenium Python中动作链的reset_actions方法。让我们访问 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 the item
action.click(on_element = element)
  
# perform the operation
action.perform()
  
# get another element 
another_element = driver.find_element_by_link_text("Courses")
  
# reset the action
action.reset_actions()
  
# click the item
action.click(on_element = another_element)
  
# perform the operation
action.perform()

输出 -
动作链-硒-Python