move note

This commit is contained in:
Simon Knott 2025-02-27 09:50:56 +01:00
parent df89d71826
commit 3ab2317092
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC
3 changed files with 10 additions and 10 deletions

View file

@ -1533,10 +1533,6 @@ 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
@ -1552,6 +1548,10 @@ IndexedDBs with typed arrays are currently not supported.
Set to `true` to include IndexedDB in the storage state snapshot. Set to `true` to include IndexedDB in the storage state snapshot.
If your application uses IndexedDB to store authentication tokens, like Firebase Authentication, enable this. If your application uses IndexedDB to store authentication tokens, like Firebase Authentication, enable this.
:::note
IndexedDBs with typed arrays are currently not supported.
:::
## property: BrowserContext.tracing ## property: BrowserContext.tracing
* since: v1.12 * since: v1.12
- type: <[Tracing]> - type: <[Tracing]>

View file

@ -9267,15 +9267,15 @@ 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?: {
/** /**
* Set to `true` to include IndexedDB in the storage state snapshot. If your application uses IndexedDB to store * Set to `true` to include IndexedDB in the storage state snapshot. If your application uses IndexedDB to store
* authentication tokens, like Firebase Authentication, enable this. * authentication tokens, like Firebase Authentication, enable this.
*
* **NOTE** IndexedDBs with typed arrays are currently not supported.
*
*/ */
indexedDB?: boolean; indexedDB?: boolean;

View file

@ -9267,15 +9267,15 @@ 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?: {
/** /**
* Set to `true` to include IndexedDB in the storage state snapshot. If your application uses IndexedDB to store * Set to `true` to include IndexedDB in the storage state snapshot. If your application uses IndexedDB to store
* authentication tokens, like Firebase Authentication, enable this. * authentication tokens, like Firebase Authentication, enable this.
*
* **NOTE** IndexedDBs with typed arrays are currently not supported.
*
*/ */
indexedDB?: boolean; indexedDB?: boolean;