Python webdriver无法连接localhost

时间:2016-05-01 09:48:39

标签: python selenium webdriver

url='http://localhost/first/'
url2='http://localhost/next/'
fp = webdriver.FirefoxProfile()
fp.set_preference("network.proxy.type", 0)
fp.set_preference("browser.cache.disk.enable", False)
fp.set_preference("browser.cache.memory.enable", False)
fp.set_preference("browser.cache.offline.enable", False)
fp.set_preference("network.http.use-cache", False)
driver = webdriver.Firefox(fp)
driver.get(url)
driver.implicitly_wait(3)
driver.get(url2)

我已尝试禁用缓存和代理,但仍然无法再次连接localhost,任何人都知道该怎么做,谢谢。

0 个答案:

没有答案