from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0
import time
# Create a new instance of the Firefox driver
driver = webdriver.Firefox()
# go to the google home page
driver.get("http://www.google.com")
This opens a Firefox window but does not open a url.
- I have a proxy server(but the address bar does not show the passed url)
- I have two Firefox profiles.
Can 1 or 2 be an issue? if yes, then how can I resolve it?