Looking to automate a website that requires logging in to an IP address. Upon accessing the IP address, a login popup alert appears but it is not inspectable (right-click does not work) and no web elements are accessible from the alert.
Attempts have been made to list all elements, but only the parent page elements like HTML, head, body are being printed.
Using driver.switchTo().alert()
gives the error
selenium.NoAlertPresentException: no such alert
How can this scenario be automated with selenium?