如何使用硒双击此元素?
我正在处理以下元素:
<p class="wrap button draggable" id="anonymous_element_1"><b class="icon" id="handler2"></b>Reports</p>
到目前为止,我有此代码:
click_button=driver.find_element_by_xpath('//*[@id="anonymous_element_1"]').click()
如何双击该元素?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
到 double> double_click 在元素上您可以使用
double_click ()
方法来自 ActionChains 实施 webdriverwait for element_to_be_clickable() 如下:必须添加以下导入:
To double_click on the element you can use
double_click()
method from ActionChains implementation inducing WebDriverWait for the element_to_be_clickable() as follows:Note : You have to add the following imports :
您是否尝试过:
xyz.click();螺纹sleep(10); xyz.click();
?
Did you try:
Xyz.click(); Thread.sleep(10); Xyz.click();
?