这个问题是由于chrome driver
总clicks
的中间element
在试图忠实于什么实际用户一样。所以我在想这种方法:
首先,而不是查找元素,然后单击:
driver.fineElement(By.xpath("bla bla")).click()
编写单击以下内容的通用函数WebElement
:
def clickOnWebElement(WebElement webElement) {
int counter = 0;
boolean isClicked = false;
Thread.sleep(1000);
try {
while (count < 2 && !isClicked) {
if (count == 0) {
webElement.click()
isClicked = true;
}
else if (count == 1) {
Actions action = new Actions(driver);
action.moveToElement(webElement).click().perform();
isClicked = true;
}
else if (count == 2) {
JavascriptExecutor js =(JavascriptExecutor)driver;
js.executeScript("window.scrollTo(0,"element.getLocation().x+")");
webElement.click();
isClicked = true;
}
}
}
catch(Exception ex) {
count++;
Thread.sleep(2000);
}
}
然后,当发生此异常时,请尝试以其他方式单击。
您认为这种方法可行吗?
请仔细阅读此堆栈溢出答案以更好地理解。
更新 我们也可以尝试
There are many Conditions that we can use withing Webdriver tests.
1. visibilityOf(WebElement element) : An expectation for checking that an element, known
to be present on the DOM of a page, is visible.
2. visibilityOfElementLocated(By locator) : An expectation for checking that an element
is present on the DOM of a page and visible.
In the above two conditions we are waiting for an element to be present on the DOM
of a page and also visible. These works fine only when the element is loaded completely.
也请尝试如下
尝试使用Y坐标单击
WebElement elementToClick = driver.findElement(By.xpath("Your xpath"));
// Scroll the browser to the element's Y position
((JavascriptExecutor)driver).executeScript("window.scrollTo(0,"+elementToClick.getLocation().y+")");
// Click the element
elementToClick.click();
尝试使用X坐标单击
WebElement elementToClick = driver.findElement(By.xpath("Your xpath"));
// Scroll the browser to the element's X position
((JavascriptExecutor)driver).executeScript("window.scrollTo(0,"+elementToClick.getLocation().x+")");
// Click the element
elementToClick.click();
希望这对您有帮助
我有一个使用Selenium WebDriver版本3.6和Chrome驱动程序的自动化项目。软件运行良好,直到它开始显示错误 未知错误:元素在点(25,-9)处不可单击(会话信息:Chrome=61.0.3163.100)(驱动程序信息:ChromeDriver=2.31.488763(092DE99F48A300323ECF8C2A4E2E7CAB51DE5BA8),平台=Windows NT
当我点击一个按钮时,它会显示一个带有另一个按钮的表单,我想点击其中一个。这是一个视频(非常短),请观看http://screencast.com/t/zyliSemW1s1 所以我点击“买票”按钮,简单如下: 然后我等待下一个按钮被点击。 我使用下一个代码: 之后,我点击我等待的按钮: 我得到错误:元素在这一点上是不可点击的。 据我所知,该方法预期的条件。ElementToBeClickable(
我试图打开stackoverflow并搜索查询,然后单击搜索按钮。除了我不能点击提交按钮外,几乎一切都很顺利 我遇到错误 未知错误:元素...在点(608,31)不可点击。其他元素将接收单击:(会话信息:chrome=60.0.3112.101)(驱动程序信息:chromeDrive=2.29.461591 (62ebf098771772160f391d75e589dc567915b233),平台
问题内容: 我尝试用Selenium 抓取此网站。 我想单击“下一页”按钮,为此,我这样做: 它适用于许多页面,但不适用于所有页面,我收到此错误 始终为此页面 我尝试了这个 但是我遇到了同样的错误 问题答案: 另一个元素覆盖了您要单击的元素。您可以使用它来单击。
关于网络驱动程序错误 对于ChromeDriver,这是在调试“元素在点不可点击”错误时解决的,但是这个问题也可能发生在火狐中。 在FirefoxDriver中发生此问题时,解决此问题的最佳方法是什么?