Horje
selenium delete cookies python Code Example
clear cookies 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)
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)




Python

Related
how to earn money as a python developer Code Example how to earn money as a python developer Code Example
Python Program to Find sum Factorial of Number Using Recursion Code Example Python Program to Find sum Factorial of Number Using Recursion Code Example
statistique in python Code Example statistique in python Code Example
#Combine two sets on python: 2nd way.(Union) Code Example #Combine two sets on python: 2nd way.(Union) Code Example
check all python versions windows Code Example check all python versions windows Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6