我有以下网页
我正在尝试双击“Blocked_IPs”文本。
这是与其交互的代码:
blocked_ips = driver.find_elements_by_xpath('//td[contains(.,"Blocked_IPs")]') print(len(blocked_ips), blocked_ips) action = ActionChains(driver) action.double_click(blocked_ips[0])
问题是,双击它似乎不起作用。当我手动执行时,它可以工作。当我执行代码时,它不起作用。单词“Blocked_IPs”只出现了一次。这是终端中的输出:
1 [<selenium.webdriver.remote.webelement.WebElement (session="82b277a5f85cbb202f5cd57c0b800f3b", element="530b1a15-a190-401c-8495-921777f8fa84")>]
有人知道为什么它不起作用吗?我该如何测试它?提前谢谢!
您需要添加perform()以使所有ActionChains发生如下:
perform()
action.double_click(blocked_ips[0]).perform()
理想情况下,您需要诱导WebDriverWait,element_to_be_clickable()并且可以使用以下定位器策略:
element_to_be_clickable()
ActionChains(driver).double_click(WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//td[contains(.,"Blocked_IPs")]")))).perform()
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.action_chains import ActionChains