📜  清除 cookie 硒 python 代码示例

📅  最后修改于: 2022-03-11 14:46:08.871000             🧑  作者: Mango

代码示例1
"""
for cookies use 'delete_all_cookies()' function

>>> driver.delete_all_cookies()

for cache create profile
"""
profile = webdriver.FirefoxProfile()
profile.set_preference("browser.cache.disk.enable", False)
profile.set_preference("browser.cache.memory.enable", False)
profile.set_preference("browser.cache.offline.enable", False)
profile.set_preference("network.http.use-cache", False) 
driver =webdriver.Firefox(profile)