未知错误:Elemen在点(1327,310)处无法点击。其他元素将收到点击:

时间:2018-03-20 05:30:13

标签: selenium selenium-chromedriver

我收到此错误:

unknown error: Element is not clickable at point (1327, 310). Other element would receive the click

我使用的是Chrome浏览器版本65.0.3325.162(官方版本)(64位),ChromeDriver 2.36和我的selenium jar是Selenium Standalone Server 3.11.0。

1 个答案:

答案 0 :(得分:1)

您可以使用以下方法来避免这种情况,

Actions action = new Actions(driver);
action.moveToElement("element name").click().perform();