(
input: &NativeInputSession,
x: f64,
y: f64,
duration_ms: u64,
)
| 5449 | } |
| 5450 | |
| 5451 | fn perform_tap_with_input( |
| 5452 | input: &NativeInputSession, |
| 5453 | x: f64, |
| 5454 | y: f64, |
| 5455 | duration_ms: u64, |
| 5456 | ) -> Result<(), crate::error::AppError> { |
| 5457 | input.send_touch(x, y, "began")?; |
| 5458 | sleep_ms(duration_ms); |
| 5459 | input.send_touch(x, y, "ended") |
| 5460 | } |
| 5461 | |
| 5462 | fn perform_swipe( |
| 5463 | bridge: &NativeBridge, |
no test coverage detected