Handle takeover request (login, captcha, etc.).
(self, action: dict, width: int, height: int)
| 233 | return ActionResult(True, False) |
| 234 | |
| 235 | def _handle_takeover(self, action: dict, width: int, height: int) -> ActionResult: |
| 236 | """Handle takeover request (login, captcha, etc.).""" |
| 237 | message = action.get("message", "User intervention required") |
| 238 | self.takeover_callback(message) |
| 239 | return ActionResult(True, False) |
| 240 | |
| 241 | def _handle_note(self, action: dict, width: int, height: int) -> ActionResult: |
| 242 | """Handle note action (placeholder for content recording).""" |
nothing calls this directly
no test coverage detected