Selenium WebDriver에서 발생하는 "ElementNotInteractableException"
Selenium WebDriver로 Gmail 로그인을 자동화하려고 하면 사용자에게 "ElementNotInteractableException" 오류가 발생할 수 있습니다. 이 오류는 웹 페이지의 특정 요소가 상호 작용을 허용하는 상태가 아님을 나타냅니다.
원인 및 해결 방법
"ElementNotInteractableException"의 일반적인 원인 및 해결 방법은 다음과 같습니다. :
이 컨텍스트에서 오류 해결
제공된 코드에서는 대기 부족으로 인해 오류가 발생합니다. 비밀번호 필드가 HTML DOM에서 적절하게 렌더링되도록 합니다. "WebDriverWait"를 사용하여 명시적 대기를 추가하면 문제가 해결됩니다.
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)); password.sendKeys("test1"); driver.findElement(By.id("passwordNext")).click();
위 내용은 Gmail 로그인 자동화 중에 Selenium에서 \'ElementNotInteractableException\'이 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!