org.openqa.selenium.WebDriverException:
点(36,72)处的元素不可单击。其他元素将收到
单击:...
命令持续时间或超时:393毫秒
如果我使用
Thread.sleep(2000)
,则不会收到任何警告。 br /> @Test(dataProvider = "menuData")
public void Main(String btnMenu, String TitleResultPage, String Text) throws InterruptedException {
WebDriverWait wait = new WebDriverWait(driver, 10);
driver.findElement(By.id("navigationPageButton")).click();
try {
wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector(btnMenu)));
} catch (Exception e) {
System.out.println("Oh");
}
driver.findElement(By.cssSelector(btnMenu)).click();
Assert.assertEquals(driver.findElement(By.cssSelector(TitleResultPage)).getText(), Text);
}
#1 楼
WebDriverException:元素在(x,y)点处不可单击这是一个典型的org.openqa.selenium.WebDriverException,它扩展了java.lang.RuntimeException。
字段例外情况是:
BASE_SUPPORT_URL:
protected static final java.lang.String BASE_SUPPORT_URL
DRIVER_INFO:
public static final java.lang.String DRIVER_INFO
SESSION_ID:
public static final java.lang.String SESSION_ID
关于您的个别用例,错误说明了一切:
WebDriverException: Element is not clickable at point (x, y). Other element would receive the click
这是从代码块中清除,您已经将
wait
定义为WebDriverWait wait = new WebDriverWait(driver, 10);
,但是您要像click()
一样在ExplicitWait
发挥作用之前在元素上调用until(ExpectedConditions.elementToBeClickable)
方法。 解决方案
错误
Element is not clickable at point (x, y)
可能由不同因素引起。您可以通过以下任一过程来解决它们:1。由于存在JavaScript或AJAX调用而无法单击元素
尝试使用
Actions
类:WebElement element = driver.findElement(By.id("navigationPageButton"));
Actions actions = new Actions(driver);
actions.moveToElement(element).click().build().perform();
2。元素未在视口中未单击
请尝试使用
JavascriptExecutor
将元素带入视口中:WebElement myelement = driver.findElement(By.id("navigationPageButton"));
JavascriptExecutor jse2 = (JavascriptExecutor)driver;
jse2.executeScript("arguments[0].scrollIntoView()", myelement);
3。在元素可单击之前,页面会得到刷新。元素存在于DOM中但不可单击。
在这种情况下,将
ExpectedConditions
设置为elementToBeClickable
诱导ExplicitWait,以使元素可单击:WebDriverWait wait2 = new WebDriverWait(driver, 10);
wait2.until(ExpectedConditions.elementToBeClickable(By.id("navigationPageButton")));
5。元素存在但具有临时覆盖。
在这种情况下,将
ExplicitWait
设置为ExpectedConditions
来诱导invisibilityOfElementLocated
,以使覆盖不可见。WebDriverWait wait3 = new WebDriverWait(driver, 10);
wait3.until(ExpectedConditions.invisibilityOfElementLocated(By.xpath("ele_to_inv")));
6。元素存在但具有永久覆盖。
使用
JavascriptExecutor
直接在元素上发送点击。WebElement ele = driver.findElement(By.xpath("element_xpath"));
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("arguments[0].click();", ele);
评论
对于上述#6 /#2:现在可以从Web驱动程序本身而不是JavascriptExecutor访问.ExecuteScript方法。感谢您的书面答复!
– Tabrock
18年5月15日在20:25
您介绍了许多可能性,其中只有5和6是处理上述错误的正确方法。前四个抛出不同的错误,您提供的解决方案将无法使用。例如,第3点实际上是一个过时的元素问题,即使您使用elementToBeClickble方法等待了多长时间也无法解决。必须以不同的方式处理。
– Rajagopalan
18年8月7日在7:59
6并不是真的正确;如果解决此问题,可以采取破解措施;如果使用了正确的预期条件,则5是正确的。 4看起来是唯一正确的答案。
– Ardesco
19 Mar 9 '19 at 19:38
需要注意的重要一点是,当我们模拟用户的操作时,使用javascript单击根本无法单击的元素可能是非常不希望的(#6)。最终用户永远不会这样做,他们只是滚动到该元素以将其带入视口,或者关闭任何叠加层(如果页面允许)以与其进行交互。
– p_champ
2月24日,下午3:55
#2 楼
如果您需要将其与Javascript一起使用我们可以使用arguments [0] .click()来模拟点击操作。
var element = element(by.linkText('webdriverjs'));
browser.executeScript("arguments[0].click()",element);
评论
作品!我无法想象它的工作方式,但是否则它将单击覆盖层(等待通过“ invisibilityOfElementLocated”关闭覆盖层大约需要30秒。)。
– Fisk
18年6月1日在10:48
因为我是用Java编写的,所以不可以写完整的解释,这不是熟悉的战争,请提供完整的流程吗?
–巴斯蒂安语
19-10-23在9:30
#3 楼
我在尝试单击某个元素(或它的覆盖物,我不在乎)时遇到了此错误,而其他答案对我不起作用。我通过使用elementFromPoint
DOM API来修复它,以找到Selenium希望我单击的元素:element_i_care_about = something()
loc = element_i_care_about.location
element_to_click = driver.execute_script(
"return document.elementFromPoint(arguments[0], arguments[1]);",
loc['x'],
loc['y'])
element_to_click.click()
我也遇到过元素移动的情况,例如因为页面上方的元素正在进行动画扩展或折叠。在这种情况下,这个Expected Condition类提供了帮助。您为其赋予动画元素,而不是要单击的元素。此版本仅适用于jQuery动画。
class elements_not_to_be_animated(object):
def __init__(self, locator):
self.locator = locator
def __call__(self, driver):
try:
elements = EC._find_elements(driver, self.locator)
# :animated is an artificial jQuery selector for things that are
# currently animated by jQuery.
return driver.execute_script(
'return !jQuery(arguments[0]).filter(":animated").length;',
elements)
except StaleElementReferenceException:
return False
#4 楼
您可以尝试WebElement navigationPageButton = (new WebDriverWait(driver, 10))
.until(ExpectedConditions.presenceOfElementLocated(By.id("navigationPageButton")));
navigationPageButton.click();
评论
这对我没有帮助。
–玛丽亚
17年7月4日在18:53
是:org.openqa.selenium.WebDriverException:元素在点(36,72)处不可单击。其他元素将获得点击:
–玛丽亚
17年7月4日在18:57
尝试以下WebElement元素= driver.findElement(By.id(“ navigationPageButton”));动作动作=新的动作(驱动程序); actions.moveToElement(element).click()。perform();
– fg78nc
17年7月4日在18:59
这也无济于事。我有两个异常和一个AssertionError,然后出现一些错误“元素在点不可单击”
–玛丽亚
17年7月4日在19:03
如果我使用Thread.Sleep然后所有工作。但是我使用“等待”全部失败。
–玛丽亚
17年7月4日在19:24
#5 楼
将页面滚动到异常中提到的附近,这对我来说很成功。以下是代码段:$wd_host = 'http://localhost:4444/wd/hub';
$capabilities =
[
\WebDriverCapabilityType::BROWSER_NAME => 'chrome',
\WebDriverCapabilityType::PROXY => [
'proxyType' => 'manual',
'httpProxy' => PROXY_DOMAIN.':'.PROXY_PORT,
'sslProxy' => PROXY_DOMAIN.':'.PROXY_PORT,
'noProxy' => PROXY_EXCEPTION // to run locally
],
];
$webDriver = \RemoteWebDriver::create($wd_host, $capabilities, 250000, 250000);
...........
...........
// Wait for 3 seconds
$webDriver->wait(3);
// Scrolls the page vertically by 70 pixels
$webDriver->executeScript("window.scrollTo(0, 70);");
注意:我使用Facebook php webdriver
#6 楼
最好的解决方案是覆盖单击功能:public void _click(WebElement element){
boolean flag = false;
while(true) {
try{
element.click();
flag=true;
}
catch (Exception e){
flag = false;
}
if(flag)
{
try{
element.click();
}
catch (Exception e){
System.out.printf("Element: " +element+ " has beed clicked, Selenium exception triggered: " + e.getMessage());
}
break;
}
}
}
#7 楼
在C#中,我在检查RadioButton
时遇到问题,这对我有用:
driver.ExecuteJavaScript("arguments[0].checked=true", radio);
#8 楼
可以尝试使用以下代码 WebDriverWait wait = new WebDriverWait(driver, 30);
传递其他元素会收到点击:
<a class="navbar-brand" href="#"></a>
boolean invisiable = wait.until(ExpectedConditions
.invisibilityOfElementLocated(By.xpath("//div[@class='navbar-brand']")));
传递可点击按钮ID如下所示
if (invisiable) {
WebElement ele = driver.findElement(By.xpath("//div[@id='button']");
ele.click();
}
评论
您使用的是Chrome 61+版本吗?@ demouser123我正在使用Firefox 47.0.1和seleniumWebDriver 2.51.0
@Maria在哪一行出现错误?谢谢
@DebanjanB所在行:driver.findElement(By.id(“ navigationPageButton”))。click();
该错误意味着,有另一个元素覆盖了目标元素(固定/绝对定位的覆盖),或者z索引过低。这可能是由使用过渡的悬停效果引起的(比最小超时慢,在这种情况下为393ms)。您应该等待#navigationPageButton变得可见(或也可以使用该元素的elementToBeClickable()单击),或者检查是否满足所有前提条件,以便按钮可单击。