Webdriver - HTTP authentication dialog

KitKarson picture KitKarson · Jan 10, 2015 · Viewed 8.7k times · Source

I have a very simple selenium-webdriver script. I would like to do HTTP authentication using webdriver.

Script:

WebDriver driver = new FirefoxDriver();  
driver.get("http://www.httpwatch.com/httpgallery/authentication/");
driver.findElement(By.id("displayImage")).click();
Thread.sleep(2000);
driver.switchTo().alert().sendKeys("httpwatch");

Issue:

driver.switchTo().alert().sendKeys("httpwatch");

throws

org.openqa.selenium.NoAlertPresentException: No alert is present

Question:

  • Does Webdriver find only an alert dialog as alert?
  • What are my options to automate this without using AutoIt OR http:// username:password @somesite

EDIT

Alert has below method and does not seem to have been implemented yet.

driver.switchTo().alert().authenticateUsing(new UsernameAndPassword("username","password"))

Answer

alecxe picture alecxe · Jan 10, 2015

The problem is that this is not a javascript popup hence you cannot manipulate it via selenium's alert().

If both AutoIt and submitting credentials in the URL (the easiest option - just open up the url and click "Display Image") are not options for you, another approach could be to use AutoAuth firefox addon to automatically submit the previously saved credentials:

AutoAuth automatically submits HTTP authentication dialogs when you’ve chosen to have the browser save your login information. (If you’ve already told the browser what your username and password are, and you’ve told it to remember that username and password, why not just have it automatically submit it instead of asking you each time?)

Following the answer suggested in HTTP Basic Auth via URL in Firefox does not work? thread:

  • Install AutoAuth Firefox plugin;
  • Visit the site where the authentication is needed. Enter your username and password and make sure to choose to save the credentials;
  • Save AutoAuth installation file at your hard drive: at the plugin page, right click at “Add to Firefox” and “Save link as”;
  • Instantiate Firefox webdriver as following:
FirefoxProfile firefoxProfile = new ProfilesIni().getProfile("default");
File pluginAutoAuth = new File("src/test/resources/autoauth-2.1-fx+fn.xpi");
firefoxProfile.addExtension(pluginAutoAuth);
driver = new FirefoxDriver(firefoxProfile);

Also, in a way similar to AutoIt option - you can use sikuli screen recognition and automation tool to submit the credentials in the popup.


Also see other ideas and options: