Handle back gesture (swipe from left edge).
(self, action: dict, width: int, height: int)
| 199 | return ActionResult(True, False) |
| 200 | |
| 201 | def _handle_back(self, action: dict, width: int, height: int) -> ActionResult: |
| 202 | """Handle back gesture (swipe from left edge).""" |
| 203 | back(wda_url=self.wda_url, session_id=self.session_id) |
| 204 | return ActionResult(True, False) |
| 205 | |
| 206 | def _handle_home(self, action: dict, width: int, height: int) -> ActionResult: |
| 207 | """Handle home button action.""" |
nothing calls this directly
no test coverage detected