Skip to content

Commit 2b54932

Browse files
authored
chore: document typed array limitation (#34649)
1 parent 1c7436e commit 2b54932

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

docs/src/api/class-browsercontext.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,6 +1533,10 @@ Whether to emulate network being offline for the browser context.
15331533

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

1536+
:::note
1537+
IndexedDBs with typed arrays are currently not supported.
1538+
:::
1539+
15361540
## async method: BrowserContext.storageState
15371541
* since: v1.8
15381542
* langs: csharp, java

packages/playwright-core/types/types.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9268,6 +9268,9 @@ export interface BrowserContext {
92689268
/**
92699269
* Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB
92709270
* snapshot.
9271+
*
9272+
* **NOTE** IndexedDBs with typed arrays are currently not supported.
9273+
*
92719274
* @param options
92729275
*/
92739276
storageState(options?: {

0 commit comments

Comments
 (0)