Input options for defining the storage state (cookies, local storage, IndexedDB) of a page or context. Used in page options or potentially for saving/loading browser state.Documentation Index
Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
Use this file to discover all available pages before exploring further.
Definition
Fields
cookies
[JSONObject]!
An array of cookie objects. Each object should conform to a structure similar to CookieOptions but typically represented as simple JSON objects when serialized.
localStorage
[JSONObject]!
An array of local storage entries. Each entry is typically an object with ‘name’ and ‘value’ string properties.
Example: [{ "name": "myKey", "value": "myValue" }]