I have an application hosted on tomcat which is protected & proxied by apache's Digest authentication.I get a basicAuth style login dialog when I access any thing on the server.
when I try to login using below code it never comes to the "driver.switchTo().alert()" part.... it keeps looping for ever in the via ... statement and throws exception. I am guessing that both "to" and "via" statements of GEB wait for page load to complete. now geb is waiting for page load and page is waiting for geb to enter credentials. a dead lock. can you please provide any suggestions on how to resolve this ? please note that I did already try http://:@mydomain.com/index.jsp but it keeps prompting me with a menacing login dialog.
via AppLoginPage //using a page object here
Alert alert= driver.switchTo().alert();
// Type the username
alert.sendKeys(user);
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_TAB);
in simple words, how to make geb complete with out waiting for full page load so that my robot code can handle the alert? hope that was clear.
I don't think that it is possible to handle basic authentication dialogs using WebDriver and thus Geb as well. You can try to provide credentials in base url, e.g.
baseUrl = 'http://admin:[email protected]'
. If that doesn't work then you will need to setup some kind of an authenticating proxy and configure the driver you're using to use it.