小编典典

selenium.common.exceptions.ElementClickInterceptedException:消息:拦截了元素单击:Selenium和Python无法单击元素

selenium

我目前正在从事一个自动填写表格的项目。填写表单后,出现下一个按钮,这就是为什么它给我一个错误。

我努力了:

WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH,"//input[@type='button' and @class='button']")))
Next = driver.find_element_by_xpath("//input[@type='button' and @class='button']")
Next.click()

HTML:

<span class="btn">
    <input type="button" value="Next" class="button" payoneer="Button" data-controltovalidate="PersonalDetails" data-onfieldsvalidation="ToggleNextButton" data-onclick="UpdateServerWithCurrentSection();" id="PersonalDetailsButton">
     </input>
     <div class="clearfix"></div>
</span>

错误:

selenium.common.exceptions.ElementClickInterceptedException:消息:元素单击被拦截:元素在点(203,530)不可单击。其他元素将获得点击:…(会话信息:chrome
= 76.0.3809.132)


阅读 717

收藏
2020-06-26

共1个答案

小编典典

如果 xpath 的路径正确,则可以尝试使用此方法来解决此问题。将旧代码替换为以下代码:

button = driver.find_element_by_xpath("xpath"]")
driver.execute_script("arguments[0].click();", button)

我之前已经解决了这个问题,但老实说,我不知道原因。

2020-06-26