Open
Description
It would be helpful to have WebDriver BiDi support interacting with data stored using IndexedDB.
Many modern web applications, especially PWAs and offline-capable apps, make extensive use of IndexedDB to store large amounts of structured data. Current testing approaches typically require injecting JavaScript to access IndexedDB, which often involves first loading the target page — something that may not always be desirable or practical.
Having protocol-level access would enable:
- Validating IndexedDB contents
- Cleaning or seeding IndexedDB during tests
- Debugging persistent storage-related bugs
Should this be part of the existing script module or its own module like storage
(CDP offers a indexeddb domain)?