Selenium 简明教程

Selenium Webdriver - Right Click

Selenium 可以借助 ActionsChains 类执行鼠标移动、按键、悬停在元素上、右键单击、拖放操作等动作。method context_click 对元素执行右击或上下文单击操作。

用于右击或上下文单击的 syntax 如下所示 −

context_click(e=None)

此处,e 是要右击的元素。如果提到了“None”,则单击在当前鼠标位置执行。我们必须添加来自导入 selenium.webdriver 的语句 ActionChains 才能使用 ActionChains 类。

Code Implementation

用于右击或上下文单击的代码实现如下 −

from selenium import webdriver
from selenium.webdriver import ActionChains
driver = webdriver.Chrome(executable_path='../drivers/chromedriver')

#implicit wait time
driver.implicitly_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 click then perform
a.context_click(s).perform()

Output

right click

执行后,名称为 - Company 的链接已被右键单击,并且所有新选项都因右键单击而显示。