(
udid: &str,
x: f64,
y: f64,
server_url: &str,
)
| 5662 | } |
| 5663 | |
| 5664 | fn fetch_service_accessibility_point( |
| 5665 | udid: &str, |
| 5666 | x: f64, |
| 5667 | y: f64, |
| 5668 | server_url: &str, |
| 5669 | ) -> anyhow::Result<Value> { |
| 5670 | let path = format!( |
| 5671 | "/api/simulators/{}/accessibility-point?x={x}&y={y}", |
| 5672 | url_path_component(udid) |
| 5673 | ); |
| 5674 | http_get_json(server_url, &path) |
| 5675 | } |
| 5676 | |
| 5677 | fn print_list_simulators(simulators: &Value, format: ListFormat) -> anyhow::Result<()> { |
| 5678 | match format { |
no test coverage detected