driver = webdriver.Firefox()
for x in range(10):
driver.get("mysite.com")
Is there a way to change the proxy on every connection to "mysite.com" in the range 10, but without closing the driver and reopening it, but just changing the settings of proxy?