WebStorage | Playwright Python
WebStorage exposes the page's localStorage or sessionStorage for the current origin via an async, browser-consistent API.
Instances are accessed through page.local_storage and page.session_storage.
- Sync
- Async
page.goto("https://example.com")
page.local_storage.set_item("token", "abc")
token = page.local_storage.get_item("token")
all = page.local_storage.items()
page.local_storage.remove_item("token")
page.local_storage.clear()
Methods
clear
Added in: v1.61
Removes all items from the storage.
Usage
Returns
get_item
Added in: v1.61
Returns the value for the given name if present.
Usage
web_storage.get_item(name)
Arguments
Returns
items
Added in: v1.61
Returns all items in the storage as name/value pairs.
Usage
Returns
remove_item
Added in: v1.61
Removes the item with the given name. No-op if the item is absent.
Usage
web_storage.remove_item(name)
Arguments
Returns
set_item
Added in: v1.61
Sets the value for the given name. Overwrites any existing value for that name.
Usage
web_storage.set_item(name, value)
Arguments
Returns