Class ApplicationCache
- java.lang.Object
-
- org.openqa.selenium.devtools.v95.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 org.openqa.selenium.devtools.Event<ApplicationCacheStatusUpdated>
applicationCacheStatusUpdated()
static org.openqa.selenium.devtools.Command<java.lang.Void>
enable()
Enables application cache domain notifications.static org.openqa.selenium.devtools.Command<ApplicationCache>
getApplicationCacheForFrame(FrameId frameId)
Returns relevant application cache data for the document in given frame.static org.openqa.selenium.devtools.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 org.openqa.selenium.devtools.Command<java.lang.String>
getManifestForFrame(FrameId frameId)
Returns manifest URL for document in the given frame.static org.openqa.selenium.devtools.Event<java.lang.Boolean>
networkStateUpdated()
-
-
-
Method Detail
-
enable
public static org.openqa.selenium.devtools.Command<java.lang.Void> enable()
Enables application cache domain notifications.
-
getApplicationCacheForFrame
public static org.openqa.selenium.devtools.Command<ApplicationCache> getApplicationCacheForFrame(FrameId frameId)
Returns relevant application cache data for the document in given frame.
-
getFramesWithManifests
public static org.openqa.selenium.devtools.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 org.openqa.selenium.devtools.Command<java.lang.String> getManifestForFrame(FrameId frameId)
Returns manifest URL for document in the given frame.
-
applicationCacheStatusUpdated
public static org.openqa.selenium.devtools.Event<ApplicationCacheStatusUpdated> applicationCacheStatusUpdated()
-
networkStateUpdated
public static org.openqa.selenium.devtools.Event<java.lang.Boolean> networkStateUpdated()
-
-