Can't enter username into popup authentication window Java, selenium (in Safari and Opera)
This constriction doesn't work both in Safari and Opera:
driver.get(“https://username:password@example.com”)
And this doesn't work too:
Alert alert = driver.switchTo().alert();
alert.sendKeys("Test"); //that is how I am trying to enter login
Thank you in advance!