Class ApplicationCache
- java.lang.Object
-
- org.openqa.selenium.devtools.applicationcache.ApplicationCache
-
@Beta public class ApplicationCache extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ApplicationCache()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Event<ApplicationCacheStatusUpdated>
applicationCacheStatusUpdated()
static Command<java.lang.Void>
enable()
Enables application cache domain notifications.static Command<ApplicationCache>
getApplicationCacheForFrame(FrameId frameId)
Returns relevant application cache data for the document in given frame.static Command<java.util.List<FrameWithManifest>>
getFramesWithManifests()
Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.static Command<java.lang.String>
getManifestForFrame(FrameId frameId)
Returns manifest URL for document in the given frame.static Event<java.lang.Boolean>
networkStateUpdated()
-
-
-
Method Detail
-
enable
public static Command<java.lang.Void> enable()
Enables application cache domain notifications.
-
getApplicationCacheForFrame
public static Command<ApplicationCache> getApplicationCacheForFrame(FrameId frameId)
Returns relevant application cache data for the document in given frame.
-
getFramesWithManifests
public static Command<java.util.List<FrameWithManifest>> getFramesWithManifests()
Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.
-
getManifestForFrame
public static Command<java.lang.String> getManifestForFrame(FrameId frameId)
Returns manifest URL for document in the given frame.
-
applicationCacheStatusUpdated
public static Event<ApplicationCacheStatusUpdated> applicationCacheStatusUpdated()
-
networkStateUpdated
public static Event<java.lang.Boolean> networkStateUpdated()
-
-