Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击


91

我使用了明确的等待,并发出警告:

org.openqa.selenium.WebDriverException:元素在点(36,72)处不可单击。其他元素将获得点击:...命令持续时间或超时:393毫秒

如果我使用Thread.sleep(2000)我不会收到任何警告。

@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);
}

您正在使用Chrome 61+版本吗?
demouser123

@ demouser123我正在使用Firefox 47.0.1和seleniumWebDriver 2.51.0
Maria

@Maria在哪一行出现错误?谢谢
DebanjanB

@DebanjanB代码行:driver.findElement(By.id(“ navigationPageButton”))。click();
玛丽亚

该错误意味着,有另一个元素覆盖了目标元素(固定/绝对定位的覆盖),或者z索引过低。这可能是由于使用过渡的悬停效果(比最小超时慢,在这种情况下为393ms)引起的。您应该等待#navigationPageButton其可见(或也可elementToBeClickable()用于该元素单击),或检查是否满足所有前提条件,以便按钮可单击。
最终在

Answers:


192

WebDriverException:元素在点(x,y)不可单击

这是一个典型的org.openqa.selenium.WebDriverException,它扩展了java.lang.RuntimeException

此异常的字段是:

  • BASE_SUPPORT_URLprotected static final java.lang.String BASE_SUPPORT_URL
  • DRIVER_INFOpublic static final java.lang.String DRIVER_INFO
  • SESSION_IDpublic static final java.lang.String SESSION_ID

关于您的个人用例,错误说明了一切:

WebDriverException: Element is not clickable at point (x, y). Other element would receive the click 

从代码块中可以很清楚地看到,您已经定义了waitas,WebDriverWait wait = new WebDriverWait(driver, 10);但是您要像在中那样在click()元素上调用方法之前。ExplicitWaituntil(ExpectedConditions.elementToBeClickable)

该错误Element is not clickable at point (x, y)可能由不同的因素引起。您可以通过以下任一过程解决它们:

1.由于存在JavaScript或AJAX调用而无法单击元素

尝试使用ActionsClass:

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.在元素可单击之前,页面正在刷新。

在这种情况下,请诱导ExplicitWait,即第4点中提到的WebDriverWait

4.元素存在于DOM中,但不可单击。

在这种情况下, 将ExplicitWaitExpectedConditions设置为,elementToBeClickable以使元素可单击:

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);

1
对于上述#6 /#2:现在可以从Web驱动程序本身而不是JavascriptExecutor访问.ExecuteScript方法。感谢您的书面答复!
塔普洛克

6
您介绍了许多可能性,其中只有5和6是处理上述错误的正确方法。前四个抛出不同的错误,您提供的解决方案将无法使用。例如,第3点实际上是一个陈旧的元素问题,即使您使用elementToBeClickble方法等待了多长时间也无法解决。必须以不同的方式处理。
Rajagopalan

6并不是真的正确;要解决该问题,可以采取破解措施,如果使用了正确的预期条件,则5是正确的。4看起来是唯一正确的答案。
Ardesco

1
需要注意的重要一点是,当我们模拟用户的操作时,使用javascript单击根本无法单击的元素可能是非常不希望的(#6)。最终用户永远不会这样做,他们只是滚动到该元素以将其带入视口,或者关闭任何叠加层(如果页面允许)以与其进行交互。
p_champ

17

如果您需要将其与Javascript一起使用

我们可以使用arguments [0] .click()来模拟点击操作。

var element = element(by.linkText('webdriverjs'));
browser.executeScript("arguments[0].click()",element);

作品!我无法想象它的工作方式,但是否则它将单击覆盖层(等待由“ invisibilityOfElementLocated”关闭覆盖的过程大约需要30秒。)。
Fisk

因为我是用Java编写的,所以不可以写完整的解释,这不是熟悉的战争,请提供完整的流程吗?
巴斯蒂安,

4

我在尝试单击某个元素(或它的覆盖物,我不在乎)时遇到了此错误,而其他答案对我不起作用。我通过使用elementFromPointDOM 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

2

你可以试试

WebElement navigationPageButton = (new WebDriverWait(driver, 10))
 .until(ExpectedConditions.presenceOfElementLocated(By.id("navigationPageButton")));
navigationPageButton.click();

这对我没有帮助。
玛丽亚

是:org.openqa.selenium.WebDriverException:元素在点(36,72)处不可单击。其他元素将获得点击:<div tabindex =“ 0” class =“ waiter-ui-lock”> </ div>命令持续时间或超时:70毫秒
Maria

1
尝试以下操作WebElement element = driver.findElement(By.id("navigationPageButton")); Actions actions = new Actions(driver); actions.moveToElement(element).click().perform();
fg78nc

这也无济于事。我有两个异常和一个AssertionError,然后是一些错误“元素在点上不可点击”
Maria

1
如果我使用Thread.Sleep然后所有工作。但是我使用“等待”全部失败。
玛丽亚

2

将页面滚动到异常中提到的附近,这对我来说很成功。下面是代码片段:

$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


0

最好的解决方案是覆盖单击功能:

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;
        }
    }
}

0

在C#中,我在check方面遇到问题RadioButton,这对我有用:

driver.ExecuteJavaScript("arguments[0].checked=true", radio);

0

可以尝试以下代码

 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();
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.