📜  perform 方法Selenium Python中的动作链

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

perform 方法Selenium Python中的动作链

Selenium 的Python模块是为使用Python执行自动化测试而构建的。 ActionChains 是一种自动化低级交互的方法,例如鼠标移动、鼠标按钮操作、按键和上下文菜单交互。这对于执行更复杂的操作(例如悬停和拖放)很有用。高级脚本使用动作链方法,我们需要拖动元素、单击元素、双击等。
本文围绕Python Selenium中 Action Chains 的perform方法展开。 perform 方法用于执行 ActionChains 类的动作实例中的所有存储操作。

句法 -

perform()

例子 -


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

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

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

action.click(on_element=element)
action.perform()

如何在Selenium Python中使用执行动作链方法?

为了演示,在Selenium Python中perform Action Chains 的方法。让我们访问 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()

输出 -
动作链-硒-Python