DOMStorage

Query and modify DOM storage.

This CDP domain is experimental.

Types

Generally, you do not need to instantiate CDP types yourself. Instead, the API creates objects for you as return values from commands, and then you can use those objects as arguments to other commands.

class cdp.dom_storage.StorageId(security_origin, is_local_storage)

DOM Storage identifier.

is_local_storage = None

Whether the storage is local storage (not session storage).

security_origin = None

Security origin for the storage.

class cdp.dom_storage.Item

DOM Storage item.

Commands

Each command is a generator function. The return type Generator[x, y, z] indicates that the generator yields arguments of type x, it must be resumed with an argument of type y, and it returns type z. In this library, types x and y are the same for all commands, and z is the return type you should pay attention to. For more information, see Getting Started: Commands.

cdp.dom_storage.clear(storage_id)
Parameters:storage_id (StorageId) –
Return type:Generator[Dict[str, Any], Dict[str, Any], None]
cdp.dom_storage.disable()

Disables storage tracking, prevents storage events from being sent to the client.

Return type:Generator[Dict[str, Any], Dict[str, Any], None]
cdp.dom_storage.enable()

Enables storage tracking, storage events will now be delivered to the client.

Return type:Generator[Dict[str, Any], Dict[str, Any], None]
cdp.dom_storage.get_dom_storage_items(storage_id)
Parameters:storage_id (StorageId) –
Return type:Generator[Dict[str, Any], Dict[str, Any], List[Item]]
Returns:
cdp.dom_storage.remove_dom_storage_item(storage_id, key)
Parameters:
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

cdp.dom_storage.set_dom_storage_item(storage_id, key, value)
Parameters:
  • storage_id (StorageId) –
  • key (str) –
  • value (str) –
Return type:

Generator[Dict[str, Any], Dict[str, Any], None]

Events

Generally, you do not need to instantiate CDP events yourself. Instead, the API creates events for you and then you use the event’s attributes.

class cdp.dom_storage.DomStorageItemAdded(storage_id, key, new_value)
class cdp.dom_storage.DomStorageItemRemoved(storage_id, key)
class cdp.dom_storage.DomStorageItemUpdated(storage_id, key, old_value, new_value)
class cdp.dom_storage.DomStorageItemsCleared(storage_id)