我们如何使用 Java 在 Selenium WebDriver 中处理身份验证弹出框?


我们能够使用 Java 在 Selenium Webdriver 中处理身份验证弹出框。为此,我们必须在 URL 中传递用户凭据。我们必须将用户名和密码添加到 URL 中。

语法 −

https://username:password@URL
https://admin:[email protected]/basic_auth
Here, the admin is the username and password.
URL – www.the-internet.herokuapp.com/basic_auth
Let us work and accept the below authentication popup.

示例

代码实现。

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
   public class AuthnPopup{
      public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      String u = "admin";

      // adding username, password with URL
      String str = "https://" + u + ":" + u + "@" + "the-internet.herokuapp.com/basic_auth";
      driver.get(str);

      // identify and get text after authentication of popup
      String t = driver.findElement(By.cssSelector("p")).getText();
      System.out.println("Text is: " + t);

      //close browser
      driver.close();
   }
}

输出

更新于: 18-Nov-2021

1000+ 次浏览

开启您的 职业 生涯

通过完成课程获得认证

马上开始
广告