English 中文(简体)
Right Click
  • 时间:2024-03-21 11:46:18

Selenium Webdriver - Right Cpck


Previous Page Next Page  

ium可以在行动组的帮助下进行摩擦运动、主要媒体、对一个要素的 h、右翼、拖拉和退步行动。 方法背景——浮标进行右侧扫描或点击某一元件。

The syntax for using the right Point or contextpoint is如下:


context_cpck(e=None)

这里,即正确点击的要素。 如果提到“None',则点击是在目前停用的位置上进行的。 我们必须从 se中补充这一发言。 网上进口行动与“行动任务”类别合作。

Code Implementation

使用右点击或点击的代码如下:


from selenium import webdriver
from selenium.webdriver import ActionChains
driver = webdriver.Chrome(executable_path= ../drivers/chromedriver )
#imppcit wait time
driver.imppcitly_wait(5)
#url launch
driver.get("https://www.tutorialspoint.com/about/about_careers.htm")
#identify element
s = driver.find_element_by_xpath("//*[text()= Company ]")
#object of ActionChains
a = ActionChains(driver)
#right cpck then perform
a.context_cpck(s).perform()

Output

Right Cpck

在实施后,与名称的联系得到了正确评价,所有新的选择都得到了正确评价。

Advertisements