gpt4 book ai didi

python - 如何使用 Selenium ChromeDriver 执行右键单击?

转载 作者:太空狗 更新时间:2023-10-29 18:31:34 24 4
gpt4 key购买 nike

我一直在搜索这个,但找不到 Python 的答案。

是否可以通过 selenium/chromedriver 模拟右键单击或打开上下文菜单?

我见过 Java 和其他一些语言的选项,但从未见过 Python。我需要做什么来模拟右键单击链接或图片?

最佳答案

它在 selenium.webdriver.common.action_chains 中称为 context_click .请注意,Selenium 无法对浏览器级别的上下文菜单执行任何操作,因此我假设您的链接将弹出 HTML 上下文菜单。

from selenium import webdriver
from selenium.webdriver import ActionChains

driver = webdriver.Chrome()
actionChains = ActionChains(driver)

actionChains.context_click(your_link).perform()

关于python - 如何使用 Selenium ChromeDriver 执行右键单击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20316864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com