I'm using Selenium python binding to setup an automation test for our web application. I'm facing a problem while testing the web on beta server because it requires HTTP authentication for an intranet username and password.
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("https://www.edureka.co/")
I need to submit a username and a password for the popup dialog upon accessing a website.
Is there a better way to do this?