chore: document typed array limitation

This commit is contained in:
Simon Knott 2025-02-06 09:52:17 +01:00
parent 7aac96d780
commit ddf8fcc749
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC
2 changed files with 7 additions and 0 deletions

View file

@ -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. 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 ## async method: BrowserContext.storageState
* since: v1.8 * since: v1.8
* langs: csharp, java * langs: csharp, java

View file

@ -9268,6 +9268,9 @@ export interface BrowserContext {
/** /**
* Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB * Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB
* snapshot. * snapshot.
*
* **NOTE** IndexedDBs with typed arrays are currently not supported.
*
* @param options * @param options
*/ */
storageState(options?: { storageState(options?: {