zoukankan      html  css  js  c++  java
  • element is not clickable at point解决办法

    错误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.在元素可点击之前,页面将被刷新。

    在这种情况下,如第4点所述诱导ExplicitWaitWebDriverWait

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

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

    WebDriverWait wait2 = new WebDriverWait(driver, 10);
    wait2.until(ExpectedConditions.elementToBeClickable(By.id("navigationPageButton")));
    

    5.元素存在但具有临时叠加。

    在这种情况下,ExplicitWait使用 ExpectedConditionsset设置invisibilityOfElementLocated为Overlay是不可见的。

    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);
  • 相关阅读:
    PAT 1035. 插入与归并(25)
    PAT 1034. 有理数四则运算(20)
    PAT 1033. 旧键盘打字(20)
    PAT 1032. 挖掘机技术哪家强(20)
    PAT 1031. 查验身份证(15)
    PAT 1030. 完美数列(25)
    PAT 1029. 旧键盘(20)
    PAT 1028. 人口普查(20)
    PAT 1027. 打印沙漏(20)
    PAT 1026. 程序运行时间(15)
  • 原文地址:https://www.cnblogs.com/onlyblog/p/10522849.html
Copyright © 2011-2022 走看看