请问一下selenium 里面的 点击鼠标右键函数是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问一下selenium 里面的 点击鼠标右键函数是啥?相关的知识,希望对你有一定的参考价值。
鼠标右键只是针对浏览器才有的扩展功能,在web上,html是没有鼠标右键这个事件的。所有事件在已有的selenium函数中都可以实现,因此不需要鼠标右键这个函数。 参考技术A contextMenu(locator)contextMenuAt(locator, coordString)
Arguments:
locator - an element locator
Simulates opening the context menu for the specified element (as might happen if the user "right-clicked" on the element).本回答被提问者采纳
Python+Selenium练习(二十四)- 鼠标右键
网页上有些元素是支持右键来触发新的菜单的。
练习场景:在百度首页,百度logo的右键,查看图片。
场景拆分:
1.打开百度首页,找到logo,右键鼠标
2.移动菜单,查看图像,然后点击
核心问题:如何操作邮件?在Selenium中有一个ActionChains模块支持,右键,鼠标悬停,拖拽,双击等动作。我们可以通过键盘向下箭头来选择查看图像这个菜单,然后点击就可以达到目的。
具体代码:
# coding=utf-8 import time from selenium import webdriver from selenium.webdriver import ActionChains from selenium.webdriver.common.keys import Keys driver = webdriver.Chrome() driver.maximize_window() driver.get(‘https://www.baidu.com/‘) time.sleep(2) element = driver.find_element_by_xpath("//*[@title=‘点击一下,了解更多‘]") actionChains = ActionChains(driver) actionChains.context_click(element).send_keys(Keys.ARROW_DOWN).send_keys(Keys.ENTER).perform() print(‘右键成功‘)
总结:ActionChains下相关方法当前的firefox不工作,这是一个已知bug
以上是关于请问一下selenium 里面的 点击鼠标右键函数是啥?的主要内容,如果未能解决你的问题,请参考以下文章