python - ElementClickInterceptedException : Message: element click intercepted: Element <label> is not clickable with Selenium and Python

标签 python selenium xpath css-selectors webdriverwait

我正在尝试单击“所有主题”和“所有状态”复选框,然后搜索结果。当我运行脚本时,会打开一个大小为 1036x674 的 Chrome 窗口。

如果我不理会窗口,则会出现元素单击拦截错误。如果我最小化或最大化窗口,我的脚本就可以正常工作。

我使用的是 Selenium 3.141.0、chrome 76、chromedriver 76 和 python 3.6

chromedriver_path = r"C:\Users\path\to\chromedriver.exe"
browser = webdriver.Chrome(executable_path=chromedriver_path)
url = "http://www.ncsl.org/research/transportation/autonomous-vehicles-legislative-database.aspx"

topics_xpath = "//*[@id=\"dnn_ctr81355_StateNetDB_UpdatePanel1\"]/div[1]/div[2]/span/label"
states_xpath = "//*[@id=\"dnn_ctr81355_StateNetDB_UpdatePanel1\"]/div[2]/div[2]/span/label"
browser.get(url)
time.sleep(30)

elem = browser.find_element_by_xpath(topics_xpath)
elem.click()
time.sleep(5)
elem = browser.find_element_by_xpath(states_xpath)
elem.click()

但我收到此错误:

ElementClickInterceptedException: Message: element click intercepted:
Element <label for="dnn_ctr81355_StateNetDB_ckBxAllTopics">...</label> is not clickable at point (259, 665).
Other element would receive the click:
<label for="dnn_ctr81355_StateNetDB_ckBxTopics_0">...</label>
(Session info: chrome=76.0.3809.100)

要单击的复选框位于我要单击的复选框的正下方。

最佳答案

您需要WebDriverWait来确保元素visibility_of_element_ located,然后滚动到Searchable Database部分,您可以通过使用定位器xpath.

请导入:

from selenium.webdriver.support import expected_conditions
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait

尝试以下代码。

chromedriver_path = r"C:\Users\path\to\chromedriver.exe"
browser = webdriver.Chrome(executable_path=chromedriver_path)
url = "http://www.ncsl.org/research/transportation/autonomous-vehicles-legislative-database.aspx"

topics_xpath = "//div[@class='divTopicsSection1']//span//label[text()='All Topics']"
states_xpath = "//div[@class='divStatesSection1']//span//label[text()='All States']"
dBase_xpath = "//h4[text()='Searchable Database']"
browser.get(url)
WebDriverWait(browser, 10).until(expected_conditions.visibility_of_element_located((By.XPATH, topics_xpath)))
elem = browser.find_element_by_xpath(dBase_xpath)
browser.execute_script("arguments[0].scrollIntoView(true);", elem)

browser.find_element_by_xpath(topics_xpath).click()
browser.find_element_by_xpath(states_xpath).click()

关于python - ElementClickInterceptedException : Message: element click intercepted: Element <label> is not clickable with Selenium and Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57632563/

相关文章:

python - 将文件保存在特定目录中的常见路径名操作

java - PhantomJS Selenium NoSuchElementException

selenium - 测试流媒体服务(如 selenium)

html - 如何通过 XPath 选择相邻元素?

Python循环下载多个文件

python - 将 opencv 阈值应用于 numpy 数组

python - 如何将数组转换为模型输入?

python - 使用 selenium webdriver 和 python 打开浏览器时出错

ruby - Xpath:所有节点直到一个节点(Wikiquote.org)

xml - XPath:如何通过属性值在所有后代节点层次结构中搜索?