我收到此错误:
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。
答案 0 :(得分:1)
您可以使用以下方法来避免这种情况,
Actions action = new Actions(driver);
action.moveToElement("element name").click().perform();