Python で Selenium によって起動された Firefox のトラフィックをプロキシにリダイレクトするにはどうすればよいですか? Web で提案されている解決策を使用しましたが、機能しません。
私が試してみました:
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)