java.lang.Object
org.openqa.selenium.devtools.v85.indexeddb.IndexedDB

@Beta public class IndexedDB extends Object
  • Constructor Details

    • IndexedDB

      public IndexedDB()
  • Method Details

    • clearObjectStore

      public static org.openqa.selenium.devtools.Command<Void> clearObjectStore(String securityOrigin, String databaseName, String objectStoreName)
      Clears all entries from an object store.
    • deleteDatabase

      public static org.openqa.selenium.devtools.Command<Void> deleteDatabase(String securityOrigin, String databaseName)
      Deletes a database.
    • deleteObjectStoreEntries

      public static org.openqa.selenium.devtools.Command<Void> deleteObjectStoreEntries(String securityOrigin, String databaseName, String objectStoreName, KeyRange keyRange)
      Delete a range of entries from an object store
    • disable

      public static org.openqa.selenium.devtools.Command<Void> disable()
      Disables events from backend.
    • enable

      public static org.openqa.selenium.devtools.Command<Void> enable()
      Enables events from backend.
    • requestData

      public static org.openqa.selenium.devtools.Command<IndexedDB.RequestDataResponse> requestData(String securityOrigin, String databaseName, String objectStoreName, String indexName, Integer skipCount, Integer pageSize, Optional<KeyRange> keyRange)
      Requests data from object store or index.
    • getMetadata

      public static org.openqa.selenium.devtools.Command<IndexedDB.GetMetadataResponse> getMetadata(String securityOrigin, String databaseName, String objectStoreName)
      Gets metadata of an object store
    • requestDatabase

      public static org.openqa.selenium.devtools.Command<DatabaseWithObjectStores> requestDatabase(String securityOrigin, String databaseName)
      Requests database with given name in given frame.
    • requestDatabaseNames

      public static org.openqa.selenium.devtools.Command<List<String>> requestDatabaseNames(String securityOrigin)
      Requests database names for given security origin.