Press the Enter key.
()
| 70 | |
| 71 | |
| 72 | def _execute_enter() -> None: |
| 73 | """Press the Enter key.""" |
| 74 | print("⏎ Pressing Enter") |
| 75 | run_adb_command(["shell", "input", "keyevent", KEYCODE_ENTER]) |
| 76 | |
| 77 | |
| 78 | def _execute_swipe(action: Dict[str, Any]) -> None: |
no test coverage detected