Selenium ElementClickInterceptedException-拦截/接收相同的元素

时间:2019-06-11 12:43:23

标签: selenium

我尝试单击一个按钮,但出现此错误:

ElementClickInterceptedException: 

    element click intercepted: Element 
      <button class="ogOEj4x-0BpDZWeccJwxx s1vteny2-12 fJWqQW">...</button> 
        is not clickable at point (1108, 559).

    Other element would receive the click: 
      <button class="ogOEj4x-0BpDZWeccJwxx s1vteny2-12 fJWqQW">...</button>

在HTML中,只有一个带有该class的按钮。

那么这个错误的意义是什么?无法点击按钮,因为它将获得点击?

1 个答案:

答案 0 :(得分:1)

也许尝试使用按操作进行点击

WebElement element = driver.findElement(By.id("id"));
Actions actions = new Actions(driver);
actions.moveToElement(element).click().build().perform();