I am unable to run the web driver via a proxy server, right now i am using the following code. Can suggest any changes???
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "10.3.100.211")
profile.set_preference("network.proxy.http_port", "8080")
profile.update_preferences()
browser = webdriver.Firefox(firefox_profile=profile)