How to handle login pop up window using Selenium WebDriver?
Use the approach where you send username and password in URL Request: http://username:password@the-site.com So just to make it more clear. The username is username password is password and the rest is usual URL of your test web Works for me without needing any tweaks. Sample Java code: public static final String TEST_ENVIRONMENT = “the-site.com”; private … Read more