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();
以上是为什么 Selenium 在 Gmail 登录自动化过程中抛出'ElementNotInteractableException”?的详细内容。更多信息请关注PHP中文网其他相关文章!