I am not able to map the elements of the prompt because it is not possible to inspect them to get the ID or name of the login and password fields, I'm trying to code the code below, give a tab in the elements and even without success.
How do I automate login on this interface?
driver.get("url");
Alert alert = driver.switchTo().alert();
Thread.sleep(2000);
Robot robot = new Robot();
robot.keyPress(KeyboardEvent.DOM_VK_TAB);
