Currently, I am encountering an issue with logging into our web applications using JavaScript for Selenium test purposes. When accessing the app manually, Internet Explorer displays the authentication popup, requiring a username and password to access the web app. I have come across several articles explaining how to handle this via XMLHttpRequest, but it leads to CORS problems. Due to business restrictions, I do not have access to the server or the ability to modify IE settings (for security reasons). My goal is to achieve the same result (login to the web app) using JavaScript or any other programmatic method. With other browsers like Firefox and Chrome, passing credentials in the URL works without issues. Current configuration: * JDK 1.6 * Selenium 2.46.0 * Internet Explorer 11