簡介:
在Selenium WebDriver 中, ElementNotInteractableException是常見的情況當嘗試與不適合互動的狀態的元素進行互動時。發生此錯誤的原因有很多,包括:
ElementNotInteractableException 的原因:
ElementNotInteractableException 的解決方案:
1。使用明確等待:
2.處理永久疊加:
特定問題在提供的程式碼中:
Gmail 登入遇到的給定程式碼嘗試輸入密碼時出現 ElementNotInteractableException。這可能是由於代碼嘗試發送密鑰時密碼字段未完全呈現。
針對所提供程式碼的解決方案:
實作明確等待在傳送金鑰之前,密碼欄位變成可點擊。以下是修正後的程式碼:
System.setProperty("webdriver.gecko.driver", "C:\Users\Ruchi\workspace2\SeleniumTest\jar\geckodriver-v0.17.0-win64\geckodriver.exe"); WebDriver driver = new FirefoxDriver(); driver.manage().window().maximize(); String url = "https://accounts.google.com/signin"; driver.get(url); driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); WebElement email_phone = driver.findElement(By.xpath("//input[@id='identifierId']")); email_phone.sendKeys("[email protected]"); driver.findElement(By.id("identifierNext")).click(); WebElement password = driver.findElement(By.xpath("//input[@name='password']")); WebDriverWait wait = new WebDriverWait(driver, 20); wait.until(ExpectedConditions.elementToBeClickable(password)); // Explicit wait password.sendKeys("test1"); driver.findElement(By.id("passwordNext")).click();
此程式碼引入了明確等待,允許密碼欄位在嘗試與其互動之前在 HTML DOM 中正確呈現,從而有效解決 ElementNotInteractableException 問題。
以上是為什麼 Selenium WebDriver 會拋出 ElementNotInteractableException,以及如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!