(&self, id: &str)
| 537 | } |
| 538 | |
| 539 | pub fn press_home(&self, id: &str) -> Result<(), AppError> { |
| 540 | let serial = self.serial_for_id(id)?; |
| 541 | self.run_adb(["-s", &serial, "shell", "input", "keyevent", "3"])?; |
| 542 | Ok(()) |
| 543 | } |
| 544 | |
| 545 | pub fn open_app_switcher(&self, id: &str) -> Result<(), AppError> { |
| 546 | let serial = self.serial_for_id(id)?; |
no test coverage detected