无法单击一个元素:Splinter / Selenium中的ElementClickInterceptedExcepti



我正在尝试刮擦页面,但是有时我在单击链接/按钮时遇到困难。

当网页加载时," LoadingWhiteBox"将首先出现,然后在几秒钟后消失(但是它将保留在HTML代码中(,只要盒子出现在网站上,我就无法单击链接并获取以下错误消息:

selenium.common.exceptions.ElementClickInterceptedException: Message: 
Element <span class="taLnk ulBlueLinks"> is not clickable at point 
(318.3000030517578,661.7999877929688) because another element <div 
class="loadingWhiteBox"> obscures it

有什么方法可以解决这个问题吗?我已经尝试使用以下命令:

driver.is_element_present_by_css('div[class*="loadingWhiteBox"]')

但是,即使元素不活跃,也存在该元素。

您可以尝试以下2种方法单击元素。

element = driver.find_element_by_css('div[class*="loadingWhiteBox"]')
driver.execute_script("arguments[0].click();", element)
element = driver.find_element_by_css('div[class*="loadingWhiteBox"]')
webdriver.ActionChains(driver).move_to_element(element ).click(element ).perform()

希望这会起作用。

此错误消息...

selenium.common.exceptions.ElementClickInterceptedException: Message: Element <span class="taLnk ulBlueLinks"> is not clickable at point (318.3000030517578,661.7999877929688) because another element <div class="loadingWhiteBox"> obscures it

...暗示所需的元素无法单击,因为其他一些元素掩盖了它。


有多种解决此问题的方法,其中几个如下:

  • 当您打算调用 click()时,您需要诱导webdriverwait与webdriverwaitwebdriverwait for element_to_be_clickable() docnive noconcontion,并且您可以使用以下任何一个定位器策略:

    >
    • 使用CSS_SELECTOR

      WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "span.taLnk.ulBlueLinks"))).click()
      
    • 使用XPATH

      WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//span[@class='taLnk ulBlueLinks']"))).click()
      
  • 不使用错误 ...另一个元素掩盖了它... 仍然持续下去,首先您需要诱导 web driverwait expected_conditions的 CC_5不合时宜阻止元素如下:

    • 使用CSS_SELECTOR

      WebDriverWait(driver, 20).until(EC.invisibility_of_element((By.CSS_SELECTOR, "div.loadingWhiteBox")))
      WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "span.taLnk.ulBlueLinks"))).click()
      
    • 使用XPATH

      WebDriverWait(driver, 20).until(EC.invisibility_of_element((By.XPATH, "//div[@class='loadingWhiteBox']")))
      WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//span[@class='taLnk ulBlueLinks']"))).click()
      
  • 如果问题仍然存在,则可以使用execute_script()方法如下:

    • 使用CSS_SELECTOR

      WebDriverWait(driver, 20).until(EC.invisibility_of_element((By.CSS_SELECTOR, "div.loadingWhiteBox")))
      driver.execute_script("arguments[0].click();", WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "span.taLnk.ulBlueLinks"))))
      
    • 使用XPATH

      WebDriverWait(driver, 20).until(EC.invisibility_of_element((By.XPATH, "//div[@class='loadingWhiteBox']")))
      driver.execute_script("arguments[0].click();", WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//span[@class='taLnk ulBlueLinks']"))))
      

注意

您必须添加以下导入:

from selenium.webdriver.support.ui import WebDriverWait       
from selenium.webdriver.common.by import By       
from selenium.webdriver.support import expected_conditions as EC

您可以等到元素消失,

WebDriverWait wait = new WebDriverWait(driver, 30);
wait.until(ExpectedConditions.invisibilityOfElementLocated(By.className("loadingWhiteBox")));

selenide

WebElement element = selenide_element.toWebElement();
WebDriverRunner.driver().executeJavaScript("arguments[0].click();", element);

当我获得此错误时,我通常会尝试其他方法。而不是:

driver.findElement(By.cssSelector("div[class*="loadingWhiteBox"]")).click();

尝试以下操作:

WebElement webElement = driver.findElement(By.cssSelector("div[class*="loadingWhiteBox"]"));
((JavascriptExecutor) driver).executeScript("arguments[0].click();", webElement);

即使有叠加层,这也会单击所找到的Webelement。

如果这不起作用,请确保您正在尝试单击正确的"可单击" Web元素,并检查您的CSS选择器是否指向其他网络元素。通过"可单击",我的意思是在单击它时执行操作(例如打开新页面(的韦伯。Web驱动程序将单击它,您可能会认为它实际上没有执行单击操作,但实际上在错误的WebElement上执行了单击操作。

我面临着同样的问题,我只是使用了以下问题:elm = driver.find_elements_by_css_selector('div [class*=&quort of loadingwhitebox&quort; quot&quort']'(elm.click((

这是一种删除多达10个拦截元素的一般方法:

  public void clickAndDeleteInterceptingElement(By selector) {
int numberOfTries = 3;
boolean isExceptionExisting = true;
while (numberOfTries > 0 && isExceptionExisting) {
    numberOfTries--;
    try {
        clickElement(findElement(selector));
        isExceptionExisting = false;
    } catch (ElementClickInterceptedException e) {
        String element = e.getMessage().split("Other element would receive the click:")[1];
        element = element.split(">")[0];
        element = element.replace(" <", "");
        String tag = element.split(" ")[0];
        String attributes = "[" + element.replace(tag + " ", "") + "]";
        String resultString = "";
        boolean isInsideAttributeValue = false;
        boolean areInvertedCommasOpeningOnes = true;
        for (int i = 0; i < attributes.length(); i++) {
            char c = attributes.charAt(i);
            if (c == '"' && areInvertedCommasOpeningOnes) {
                isInsideAttributeValue = true;
                areInvertedCommasOpeningOnes = false;
            } else if (c == '"' && !areInvertedCommasOpeningOnes) {
                isInsideAttributeValue = false;
                areInvertedCommasOpeningOnes = true;
            }
            if (c == ' ' && isInsideAttributeValue) {
                resultString += "spaceInsideAttributeValue";
            } else {
                resultString += c;
            }
        }
        resultString = resultString.replace(" ", "][");
        resultString = resultString.replace("spaceInsideAttributeValue", " ");
        String cssSelectorString = tag + resultString;
        try {
            deleteElement(By.cssSelector(cssSelectorString));
        } catch (WebDriverException e2) {
            e.printStackTrace();
            e2.printStackTrace();
            break;
        }
        sleep(1000);
    }
}
if (isExceptionExisting) {
    clickElement(findElement(selector));
}

}

相关内容

  • 没有找到相关文章

最新更新