(self, x, y)
| 135 | return ret |
| 136 | |
| 137 | def tap(self, x, y): |
| 138 | adb_command = f"adb -s {self.device} shell input tap {x} {y}" |
| 139 | ret = execute_adb(adb_command) |
| 140 | return ret |
| 141 | |
| 142 | def text(self, input_str): |
| 143 | input_str = input_str.replace(" ", "%s") |
no test coverage detected