element is not clickable at point解決辦法

錯誤Element is not clickable at point (x, y)可能源於不一樣因素。您能夠經過如下任一過程解決它們:css

1.因爲存在JavaScript或AJAX調用,元素未被點擊ui

嘗試使用ActionsClass:url

WebElement element = driver.findElement(By.id("navigationPageButton"));
Actions actions = new Actions(driver);
actions.moveToElement(element).click().build().perform();

2.元素未被點擊,由於它不在視口spa

嘗試使用JavascriptExecutor該元素在視口中:.net

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

3.在元素可點擊以前,頁面將被刷新。code

在這種狀況下,如第4點所述誘導ExplicitWaitWebDriverWaitorm

4.元素存在於DOM中但不可點擊。ip

在這種狀況下, 請將ExplicitWaitExpectedConditions設置elementToBeClickable爲可單擊的元素:ci

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

5.元素存在但具備臨時疊加。element

在這種狀況下,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);
相關文章
相關標籤/搜索