上次我在Python中使用Firefox驱动程序时如何向配置文件加载数据?

时间:2019-07-28 05:15:56

标签: python selenium firefox selenium-webdriver selenium-firefoxdriver

打开配置文件“ nrec41w9.Tettet”并登录“ https://www.gmail.com”,然后关闭Firefox。之后,再次打开配置文件“ nrec41w9.Tettet”,转到“ https://www.gmail.com”,它不会保持日志记录。最重要的是,它根本没有任何历史。

from selenium.webdriver.firefox.options import Options
from selenium import webdriver

options = Options()
options.preferences.update({'javascript.enabled': False ,'media.peerconnection.enabled': False})

fp = webdriver.FirefoxProfile (r"C:\Users\Kinosuke\AppData\Roaming\Mozilla\Firefox\Profiles\nrec41w9.Tettet")

browser = webdriver.Firefox(options=options, firefox_profile=fp)

我想上次使用Selenium打开带有数据的Firefox,它已经“ javascript.enabled”:False,“ media.peerconnection.enabled”:False”

感谢您的帮助!

0 个答案:

没有答案