我尝试单击一个按钮,但出现此错误:
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
的按钮。
那么这个错误的意义是什么?无法点击按钮,因为它将获得点击?
答案 0 :(得分:1)
也许尝试使用按操作进行点击
WebElement element = driver.findElement(By.id("id"));
Actions actions = new Actions(driver);
actions.moveToElement(element).click().build().perform();