In this question an answer is given on how to handle authentication popup with Selenium WebDriver using Java. Now, can this be used also for python? It looks like the python driver has no class UserAndPassword
like the Java pendant has.
Here is what I have tried:
wait = WebDriverWait(driver, 10)
alert = wait.until(ExpectedConditions.alertIsPresent())
alert.authenticateUsing(UserAndPassword("user","passwd"))