How to Handle Windows Authentication In Selenium With Example?
This post, we are going to discuss how you can handle the windows authentication
package com.selenium.basics; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class WindowsAuthentication { public static void main(String[] args) { WebDriver driver=new FirefoxDriver(); driver.get("http://softwaretesting:blog@www.engprod-charter.net/"); } }
Leave a Reply