소개:
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!