27 lines
560 B
Python
27 lines
560 B
Python
from utils import WIPObject, Command
|
|
|
|
|
|
def clearBrowserCache():
|
|
command = Command('Network.clearBrowserCache', {})
|
|
return command
|
|
|
|
|
|
def canClearBrowserCache():
|
|
command = Command('Network.canClearBrowserCache', {})
|
|
return command
|
|
|
|
|
|
def setCacheDisabled(value):
|
|
command = Command('Network.setCacheDisabled', {'cacheDisabled': value})
|
|
return command
|
|
|
|
|
|
class RequestId(WIPObject):
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def __str__(self):
|
|
return self.value
|
|
|
|
def __repr__(self):
|
|
return self.value
|