Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/src/api/class-browsercontext.md
Original file line number Diff line number Diff line change
Expand Up @@ -1533,6 +1533,10 @@ Whether to emulate network being offline for the browser context.

Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB snapshot.

:::note
IndexedDBs with typed arrays are currently not supported.
:::

## async method: BrowserContext.storageState
* since: v1.8
* langs: csharp, java
Expand Down
3 changes: 3 additions & 0 deletions packages/playwright-core/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9268,6 +9268,9 @@ export interface BrowserContext {
/**
* Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB
* snapshot.
*
* **NOTE** IndexedDBs with typed arrays are currently not supported.
*
* @param options
*/
storageState(options?: {
Expand Down
Loading