Selenium Web Driver& Java的。元素在点(x,y)处不可点击。其他元素将收到点击

时间:2017-07-04 18:26:14

标签: java selenium selenium-webdriver webdriver

我使用了明确的等待,并且有警告:

  

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

8 个答案:

答案 0 :(得分:111)

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 

从您的代码块可以清楚地看出,您已将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。元素未被点击,因为它不在Viewport

之内

尝试使用 JavascriptExecutor 将元素置于视口中:

WebElement myelement = driver.findElement(By.id("navigationPageButton"));
JavascriptExecutor jse2 = (JavascriptExecutor)driver;
jse2.executeScript("arguments[0].scrollIntoView()", myelement); 

第3。在元素可点击之前,页面会刷新。

在这种情况下,如第4点所述,诱导 ExplicitWait ,即 WebDriverWait

<强> 4。元素存在于DOM中但不可点击。

在这种情况下,将 ExplicitWait ExpectedConditions设置为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 :(得分:11)

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

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

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

答案 2 :(得分: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

答案 3 :(得分:2)

你可以尝试

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

答案 4 :(得分:2)

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

WifiConfiguration conf = new WifiConfiguration();
conf.SSID = "\"" + networkSSID + "\"";  

注意::我使用Facebook php webdriver

答案 5 :(得分: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;
        }
    }
}

答案 6 :(得分: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();
    }

答案 7 :(得分:0)

如果元素不可点击,并且出现重叠问题,则使用 arguments [0] .click()。

WebElement ele = driver.findElement(By.xpath(“ // div [@ class ='input-group-btn'] / input”))); JavascriptExecutor执行程序=(JavascriptExecutor)驱动程序; executor.executeScript(“ arguments [0] .click();”,ele);