We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47c3d2c commit 7ec2752Copy full SHA for 7ec2752
1 file changed
docs/helpers/Playwright.md
@@ -1352,14 +1352,15 @@ Avoid committing it to source control and prefer storing it in a protected secre
1352
1353
* `options` **[object][6]?**
1354
1355
- * `options.indexedDB` **[boolean][26]?** set to true to include IndexedDB in snapshot (Playwright >=1.51)```js
+ * `options.indexedDB` **[boolean][26]?** set to true to include IndexedDB in snapshot (Playwright >=1.51)
1356
+ ```js
1357
// basic usage
1358
const state = await I.grabStorageState();
1359
require('fs').writeFileSync('authState.json', JSON.stringify(state));
1360
1361
// include IndexedDB when using Firebase Auth, etc.
1362
const stateWithIDB = await I.grabStorageState({ indexedDB: true });
- ```
1363
+ ```
1364
1365
### grabTextFrom
1366
0 commit comments