(self, session_id: str)
| 54 | return session, True |
| 55 | |
| 56 | def exists(self, session_id: str) -> bool: |
| 57 | return session_id in self.sessions |
| 58 | |
| 59 | def destroy(self, session_id: str) -> bool: |
| 60 | """destroy closes the driver instance and removes session from the storage. |
no outgoing calls
no test coverage detected