diff --git a/docs/src/api/class-apirequestcontext.md b/docs/src/api/class-apirequestcontext.md index ad3c8555c8..838625bcbf 100644 --- a/docs/src/api/class-apirequestcontext.md +++ b/docs/src/api/class-apirequestcontext.md @@ -914,4 +914,4 @@ Returns storage state for this request context, contains current cookies and loc * since: v1.51 - `indexedDB` ? -Set to `false` to omit IndexedDB from snapshot. +Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. diff --git a/docs/src/api/class-browsercontext.md b/docs/src/api/class-browsercontext.md index 9343fcb61c..4b2ec2b931 100644 --- a/docs/src/api/class-browsercontext.md +++ b/docs/src/api/class-browsercontext.md @@ -1545,7 +1545,7 @@ Returns storage state for this browser context, contains current cookies, local * since: v1.51 - `indexedDB` ? -Set to `false` to omit IndexedDB from snapshot. +Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. ## property: BrowserContext.tracing * since: v1.12 diff --git a/packages/playwright-core/types/types.d.ts b/packages/playwright-core/types/types.d.ts index 9b928e7217..5117b61f02 100644 --- a/packages/playwright-core/types/types.d.ts +++ b/packages/playwright-core/types/types.d.ts @@ -9272,7 +9272,7 @@ export interface BrowserContext { */ storageState(options?: { /** - * Set to `false` to omit IndexedDB from snapshot. + * Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. */ indexedDB?: boolean; @@ -18537,7 +18537,7 @@ export interface APIRequestContext { */ storageState(options?: { /** - * Set to `false` to omit IndexedDB from snapshot. + * Defaults to `true`. Set to `false` to omit IndexedDB from snapshot. */ indexedDB?: boolean;