When the browser launch is initiated by SeleniumRC, a dialog box always comes to ask for username/password to login to our proxy server (however, it is prepopulated with username/password, all has to be done is just press the OK button).
selenium.open("/"); selenium.type("q", "selenium rc"); selenium.click("btnG"); selenium.waitForPageToLoad("10000"); assertTrue(selenium.isTextPresent("Results * for selenium rc")); // These are the real test steps //selenium.stop();
After the first command, the dialog box appears and I want to dispose that dialog box PROGRAMMATIC. Any help?