browsing 0.1.3

Lightweight MCP/API for browser automation: navigate, get content (text), screenshot. Parallelism via RwLock.
Documentation
//! Keyboard utilities for browser automation

/// Get key code and Windows virtual key code for a key
pub fn get_key_info(key: &str) -> (String, Option<u32>) {
    // Key mapping based on Windows Virtual Key Codes
    let key_map: std::collections::HashMap<&str, (&str, u32)> = [
        // Navigation keys
        ("Backspace", ("Backspace", 8)),
        ("Tab", ("Tab", 9)),
        ("Enter", ("Enter", 13)),
        ("Escape", ("Escape", 27)),
        ("Space", ("Space", 32)),
        (" ", ("Space", 32)),
        ("PageUp", ("PageUp", 33)),
        ("PageDown", ("PageDown", 34)),
        ("End", ("End", 35)),
        ("Home", ("Home", 36)),
        ("ArrowLeft", ("ArrowLeft", 37)),
        ("ArrowUp", ("ArrowUp", 38)),
        ("ArrowRight", ("ArrowRight", 39)),
        ("ArrowDown", ("ArrowDown", 40)),
        ("Insert", ("Insert", 45)),
        ("Delete", ("Delete", 46)),
        // Modifier keys
        ("Shift", ("ShiftLeft", 16)),
        ("ShiftLeft", ("ShiftLeft", 16)),
        ("ShiftRight", ("ShiftRight", 16)),
        ("Control", ("ControlLeft", 17)),
        ("ControlLeft", ("ControlLeft", 17)),
        ("ControlRight", ("ControlRight", 17)),
        ("Alt", ("AltLeft", 18)),
        ("AltLeft", ("AltLeft", 18)),
        ("AltRight", ("AltRight", 18)),
        ("Meta", ("MetaLeft", 91)),
        ("MetaLeft", ("MetaLeft", 91)),
        ("MetaRight", ("MetaRight", 92)),
        // Function keys
        ("F1", ("F1", 112)),
        ("F2", ("F2", 113)),
        ("F3", ("F3", 114)),
        ("F4", ("F4", 115)),
        ("F5", ("F5", 116)),
        ("F6", ("F6", 117)),
        ("F7", ("F7", 118)),
        ("F8", ("F8", 119)),
        ("F9", ("F9", 120)),
        ("F10", ("F10", 121)),
        ("F11", ("F11", 122)),
        ("F12", ("F12", 123)),
    ]
    .iter()
    .cloned()
    .collect();

    if let Some(&(code, vk_code)) = key_map.get(key) {
        return (code.to_string(), Some(vk_code));
    }

    // Handle alphanumeric keys dynamically
    if key.len() == 1 {
        let ch = key.chars().next().unwrap();
        if ch.is_alphabetic() {
            let upper = ch.to_uppercase().next().unwrap();
            return (format!("Key{upper}"), Some(upper as u32));
        } else if ch.is_ascii_digit() {
            return (format!("Digit{ch}"), Some(ch as u32));
        }
    }

    // Fallback: use the key name as code, no virtual key code
    (key.to_string(), None)
}