“Selenium Delete Cookies Python” Ответ

чистое печенье Selenium Python

"""
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)
Puzzled Puffin

Selenium Delete Cookies Python

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)
Defiant Dove

Ответы похожие на “Selenium Delete Cookies Python”

Вопросы похожие на “Selenium Delete Cookies Python”

Больше похожих ответов на “Selenium Delete Cookies Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования