如何使用硒双击此元素?

发布于 2025-01-23 03:45:14 字数 315 浏览 0 评论 0 原文

我正在处理以下元素:

<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()

如何双击该元素?

I am working with the following element:

<p class="wrap button draggable" id="anonymous_element_1"><b class="icon" id="handler2"></b>Reports</p>

I have this code so far:

click_button=driver.find_element_by_xpath('//*[@id="anonymous_element_1"]').click()

How can I double click on the element?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花桑 2025-01-30 03:45:14

double> double_click 在元素上您可以使用double_click () 方法来自 ActionChains 实施 webdriverwait for element_to_be_clickable() 如下:

ActionChains(driver).double_click(WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//p[@class='wrap button draggable' and @id='anonymous_element_1'][contains(., 'Reports')]")))).perform()

必须添加以下导入:

from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC

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:

ActionChains(driver).double_click(WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//p[@class='wrap button draggable' and @id='anonymous_element_1'][contains(., 'Reports')]")))).perform()

Note : You have to add the following imports :

from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
献世佛 2025-01-30 03:45:14

您是否尝试过:

xyz.click();螺纹sleep(10); xyz.click();

Did you try:

Xyz.click(); Thread.sleep(10); Xyz.click();

?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文