I want to use Selenium Webdriver with a proxy which needs user authentication. Is this possible?
this is, what i have so far, but I don't know where to put the credentials ( user:pass@proxy:port)
from selenium import webdriver
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "proxy")
profile.set_preference("network.proxy.http_port", "port_number")
profile.update_preferences()
driver = webdriver.Firefox(firefox_profile=profile)
driver.get('http://www.google.com')
driver.title