* Grab the current storage state (cookies, localStorage, etc.) via Playwright's `browserContext.storageState()`. * Returns the raw object that Playwright provides. * * Security: The returned object can contain authentication tokens, session cookies * and (when `indexedDB: true` is used)
(options = {})
| 2631 | * ``` |
| 2632 | */ |
| 2633 | async grabStorageState(options = {}) { |
| 2634 | return this.browserContext.storageState(options) |
| 2635 | } |
| 2636 | |
| 2637 | /** |
| 2638 | * {{> clearCookie }} |
no outgoing calls
no test coverage detected