Clear all local storage.
(self)
| 318 | ) |
| 319 | |
| 320 | def clear(self) -> None: |
| 321 | """Clear all local storage.""" |
| 322 | self.driver.execute_script(f"window.{self.storage_key}.clear();") |
| 323 | |
| 324 | def __getitem__(self, key) -> str: |
| 325 | """Get a key from local storage. |
no outgoing calls