(
&self,
udid: &str,
point: Option<(f64, f64)>,
)
| 592 | } |
| 593 | |
| 594 | pub fn accessibility_snapshot( |
| 595 | &self, |
| 596 | udid: &str, |
| 597 | point: Option<(f64, f64)>, |
| 598 | ) -> Result<serde_json::Value, AppError> { |
| 599 | self.accessibility_snapshot_with_max_depth(udid, point, None) |
| 600 | } |
| 601 | |
| 602 | pub fn accessibility_snapshot_with_max_depth( |
| 603 | &self, |
no test coverage detected