如何将 Selenium 在 Python 中启动的 Firefox 的流量重定向到代理?我使用了网上建议的解决方案,但它们不起作用!
我努力了:
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", "54.213.66.208")
profile.set_preference("network.proxy.http_port", 80)
profile.update_preferences()
driver = webdriver.Firefox(profile)