(self)
| 130 | return result |
| 131 | |
| 132 | def back(self): |
| 133 | adb_command = f"adb -s {self.device} shell input keyevent KEYCODE_BACK" |
| 134 | ret = execute_adb(adb_command) |
| 135 | return ret |
| 136 | |
| 137 | def tap(self, x, y): |
| 138 | adb_command = f"adb -s {self.device} shell input tap {x} {y}" |
no test coverage detected