use enigo::{Enigo, MouseButton, MouseControllable}; use winapi::um::winuser::WHEEL_DELTA; use std::thread; use std::time::Duration; fn main() { let wait_time = Duration::from_secs(2); let mut enigo = Enigo::new(); thread::sleep(wait_time); enigo.mouse_move_to(500, 200); thread::sleep(wait_time); enigo.mouse_click(MouseButton::Left); thread::sleep(wait_time); #[cfg(not(target_os = "macos"))] { enigo.mouse_scroll_x(2 * WHEEL_DELTA as i32); thread::sleep(wait_time); enigo.mouse_scroll_x(-2 * WHEEL_DELTA as i32); thread::sleep(wait_time); enigo.mouse_scroll_y(2 * WHEEL_DELTA as i32); thread::sleep(wait_time); enigo.mouse_scroll_y(-2 * WHEEL_DELTA as i32); thread::sleep(wait_time); } }