How to Handle Windows Authentication In Selenium With Example?
In this post, we are going to discuss how you can handle 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/");
}
}