使用 Selenium 处理浏览器身份验证
我们可以使用 Selenium WebDriver 来处理浏览器身份验证。我们必须传递附加有 URL 的凭据。用户名和密码必须按如下格式添加:https://username:password@URL。让我们尝试处理以下浏览器身份验证。
在正确输入用户名和密码并单击确定按钮后,我们将导航到实际页面,其中包含恭喜!您必须具备适当的凭据。
语法
https://username:password@URL https://admin:admin@the−internet.herokuapp.com/basic_auth
在此,username 和 password 值为 admin。
URL 为 www.the−internet.herokuapp.com/basic_auth
示例
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; public class BrwAuthnPopup{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); String a = "admin"; // appending username, password with URL String s = "https://" + a + ":" + a + "@" + "the-internet.herokuapp.com/basic_auth"; driver.get(s); // identify text String m = driver.findElement(By.cssSelector("p")).getText(); System.out.println("Text is: " + m); driver.close(); } }
输出
广告