diff --git a/dotnet/docs/api/class-apirequestcontext.mdx b/dotnet/docs/api/class-apirequestcontext.mdx index 1c90eb92fe5..77062c1a02e 100644 --- a/dotnet/docs/api/class-apirequestcontext.mdx +++ b/dotnet/docs/api/class-apirequestcontext.mdx @@ -555,6 +555,9 @@ await ApiRequestContext.StorageStateAsync(options); **Arguments** - `options` `ApiRequestContextStorageStateOptions?` *(optional)* + - `IndexedDB` [bool]? *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `Path` [string]? *(optional)*# The file path to save the storage state to. If [Path](/api/class-apirequestcontext.mdx#api-request-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/dotnet/docs/api/class-browsercontext.mdx b/dotnet/docs/api/class-browsercontext.mdx index 4fe1e4d69a8..1aad5f33eb2 100644 --- a/dotnet/docs/api/class-browsercontext.mdx +++ b/dotnet/docs/api/class-browsercontext.mdx @@ -910,6 +910,11 @@ await BrowserContext.SetOfflineAsync(offline); 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. +::: + **Usage** ```csharp @@ -918,6 +923,9 @@ await BrowserContext.StorageStateAsync(options); **Arguments** - `options` `BrowserContextStorageStateOptions?` *(optional)* + - `IndexedDB` [bool]? *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `Path` [string]? *(optional)*# The file path to save the storage state to. If [Path](/api/class-browsercontext.mdx#browser-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/java/docs/api/class-apirequestcontext.mdx b/java/docs/api/class-apirequestcontext.mdx index b66d4e4021a..1d19150cdf9 100644 --- a/java/docs/api/class-apirequestcontext.mdx +++ b/java/docs/api/class-apirequestcontext.mdx @@ -296,6 +296,9 @@ APIRequestContext.storageState(options); **Arguments** - `options` `ApiRequestContext.StorageStateOptions` *(optional)* + - `setIndexedDB` [boolean] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `setPath` [Path] *(optional)*# The file path to save the storage state to. If [setPath](/api/class-apirequestcontext.mdx#api-request-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/java/docs/api/class-browsercontext.mdx b/java/docs/api/class-browsercontext.mdx index ea262dfee55..d8e0d25441a 100644 --- a/java/docs/api/class-browsercontext.mdx +++ b/java/docs/api/class-browsercontext.mdx @@ -807,6 +807,11 @@ BrowserContext.setOffline(offline); 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. +::: + **Usage** ```java @@ -816,6 +821,9 @@ BrowserContext.storageState(options); **Arguments** - `options` `BrowserContext.StorageStateOptions` *(optional)* + - `setIndexedDB` [boolean] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `setPath` [Path] *(optional)*# The file path to save the storage state to. If [setPath](/api/class-browsercontext.mdx#browser-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/nodejs/docs/api/class-apirequestcontext.mdx b/nodejs/docs/api/class-apirequestcontext.mdx index 5703f0a0959..2b9c4f80e7b 100644 --- a/nodejs/docs/api/class-apirequestcontext.mdx +++ b/nodejs/docs/api/class-apirequestcontext.mdx @@ -575,6 +575,9 @@ await apiRequestContext.storageState(options); **Arguments** - `options` [Object] *(optional)* + - `indexedDB` [boolean] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `path` [string] *(optional)*# The file path to save the storage state to. If [path](/api/class-apirequestcontext.mdx#api-request-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/nodejs/docs/api/class-browsercontext.mdx b/nodejs/docs/api/class-browsercontext.mdx index a66a8682e36..49ab7293acf 100644 --- a/nodejs/docs/api/class-browsercontext.mdx +++ b/nodejs/docs/api/class-browsercontext.mdx @@ -849,6 +849,11 @@ await browserContext.setOffline(offline); 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. +::: + **Usage** ```js @@ -858,6 +863,9 @@ await browserContext.storageState(options); **Arguments** - `options` [Object] *(optional)* + - `indexedDB` [boolean] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `path` [string] *(optional)*# The file path to save the storage state to. If [path](/api/class-browsercontext.mdx#browser-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/python/docs/api/class-apirequestcontext.mdx b/python/docs/api/class-apirequestcontext.mdx index 5efdf37a8f3..fb8cd851bdd 100644 --- a/python/docs/api/class-apirequestcontext.mdx +++ b/python/docs/api/class-apirequestcontext.mdx @@ -665,6 +665,9 @@ api_request_context.storage_state(**kwargs) ``` **Arguments** +- `indexed_db` [bool] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `path` [Union]\[[str], [pathlib.Path]\] *(optional)*# The file path to save the storage state to. If [path](/api/class-apirequestcontext.mdx#api-request-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk. diff --git a/python/docs/api/class-browsercontext.mdx b/python/docs/api/class-browsercontext.mdx index a1c25562163..8ace769dadb 100644 --- a/python/docs/api/class-browsercontext.mdx +++ b/python/docs/api/class-browsercontext.mdx @@ -1178,6 +1178,11 @@ browser_context.set_offline(offline) 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. +::: + **Usage** ```python @@ -1186,6 +1191,9 @@ browser_context.storage_state(**kwargs) ``` **Arguments** +- `indexed_db` [bool] *(optional)* Added in: v1.51# + + Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. - `path` [Union]\[[str], [pathlib.Path]\] *(optional)*# The file path to save the storage state to. If [path](/api/class-browsercontext.mdx#browser-context-storage-state-option-path) is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk.