(self)
| 58 | return self.current_context |
| 59 | |
| 60 | def _add_commands(self) -> None: |
| 61 | self.command_executor.add_command(Command.CONTEXTS, 'GET', '/session/$sessionId/contexts') |
| 62 | self.command_executor.add_command(Command.GET_CURRENT_CONTEXT, 'GET', '/session/$sessionId/context') |
| 63 | self.command_executor.add_command(Command.SWITCH_TO_CONTEXT, 'POST', '/session/$sessionId/context') |
nothing calls this directly
no test coverage detected