I am behind a proxy network. I have this a part of my python script:
PROXY_HOST = "10.3.100.212"
PROXY_PORT = 8080
fp = webdriver.FirefoxProfile()
fp.set_preference("network.proxy.type", 1)
fp.set_preference("network.proxy.http", PROXY_HOST)
fp.set_preference("network.proxy.http_port", PROXY_PORT)
fp.set_preference("network.proxy.ftp", PROXY_HOST)
fp.set_preference("network.proxy.ftp_port", PROXY_PORT)
fp.set_preference("network.proxy.ssl", PROXY_HOST)
fp.set_preference("network.proxy.ssl_port", PROXY_PORT)
fp.set_preference("network.proxy.no_proxies_on", "localhost,127.0.0.1")
br = webdriver.Firefox(firefox_profile=fp)
br.get("http://google.com")
After the script is run, the Firefox window is opened but url is not loaded. I have checked the settings, it is correct and when I manual type google.com in that window, it opens up. Please tell me how to directly open any url.