Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java를 사용하여 Selenium WebDriver에서 인증 팝업을 어떻게 처리할 수 있습니까?

<시간/>

Java를 사용하여 Selenium 웹 드라이버에서 인증 팝업을 처리할 수 있습니다. 이렇게 하려면 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.

Java를 사용하여 Selenium WebDriver에서 인증 팝업을 어떻게 처리할 수 있습니까?

예시

코드 구현.

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();
   }
}

출력

Java를 사용하여 Selenium WebDriver에서 인증 팝업을 어떻게 처리할 수 있습니까?