如何使用 Selenium WebDriver 处理 JavaScript 弹出窗口?


我们可以借助 Alert 接口使用 Selenium webdriver 处理 JavaScript 弹出窗口。这些警报是弹出窗口,它们将焦点从主网页转移到页面上显示的警报文本。

默认情况下,webdriver 的焦点在主页面上,要访问警报,我们必须显式地将驱动程序焦点从主页面切换到警报框。警报可以分为两种类型——基于 Web 的和基于窗口的。JavaScript 弹出窗口是基于 Web 的警报。

switchTo().alert() 方法用于将驱动程序焦点切换到警报。驱动程序焦点切换后,我们可以使用 switchTo().alert().getText() 方法获取弹出窗口的文本。最后,我们将使用 switchTo().alert().accept() 方法接受警报,并使用 switchTo().alert().dismiss() 方法将其关闭。

要在确认警报中输入文本,可以使用 switchTo().alert().sendKeys() 方法。要输入的文本作为参数传递给此方法。此外,我们还必须添加 import org.openqa.selenium.Alert 语句才能使用警报。

示例

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.Alert;
public class JavaScriptAlert{
   public static void main(String[] args) {
      System.setProperty("webdriver.gecko.driver",
         "C:\Users\ghs6kor\Desktop\Java\geckodriver.exe");
      WebDriver driver = new FirefoxDriver();
      //implicit wait
      driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
      //URL launch
      driver.get("https://the-internet.herokuapp.com/javascript_alerts");
      // identify element
      WebElement a =driver.findElement(By.xpath("//button[text()='Click for JS Confirm']"));
      a.click();
      //switch alert
      Alert al = driver.switchTo().alert();
      //obtain text
      String st = al.getText();
      System.out.println("Text is: " + st);
      //alert dismiss
      al.dismiss();
      a.click();
      //alert accept
      al.accept();
      driver.close();}
   }
}

输出

更新于: 2021年4月6日

499 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始学习
广告