0

大家好,我的代码有问题。

from selenium import webdriver
import time

profile = webdriver.FirefoxProfile()
profile.set_preference('network.proxy_type',1)
profile.set_preference('network.proxy.http',"91.xx.xxx.xx")
profile.set_preference('network.proxy.http_port',xxxx)
# profile.update_preference()  ---> this code letter giving the error.
driver = webdriver.Firefox(firefox_profile=profile)
driver.get('http://whatismyipaddress.com')
time.sleep(3)
driver.close()

这是我得到的错误:

AttributeError: 'FirefoxProfile' object has no attribute 'update'

我无法弄清楚我只想保存配置文件设置以供使用的问题。

4

2 回答 2

1

我认为你需要改变这个

profile.update_preference()

有了这个:

profile.update_preferences()
于 2019-11-28T11:21:08.140 回答
1

更新首选项()

update_preferences()使用所需FirefoxProfiledefault_preferences冻结首选项更新 ,其定义为:

def update_preferences(self):
    for key, value in FirefoxProfile.DEFAULT_PREFERENCES['frozen'].items():
        self.default_preferences[key] = value
    self._write_user_prefs(self.default_preferences)

但是,你很接近。您需要在需要替换的代码中有效地替换为 ie update_preference()update_preferences()

profile.update_preference()

profile.update_preferences()

参考

您可以在以下位置找到相关讨论:

于 2019-11-28T12:23:13.820 回答