headless_chrome 1.0.21

Control Chrome programmatically
Documentation
use anyhow::Result;

use headless_chrome::{Browser, LaunchOptions};

fn query(input: &str) -> Result<()> {
    let browser = Browser::new(
        LaunchOptions::default_builder()
            .build()
            .expect("Could not find chrome-executable"),
    )?;
    let tab = browser.new_tab()?;
    tab.navigate_to("https://en.wikipedia.org")?
        .wait_for_element("input#searchInput")?
        .click()?;
    tab.type_str(input)?.press_key("Enter")?;
    match tab.wait_for_element("div.shortdescription") {
        Err(e) => eprintln!("Query failed: {e:?}"),
        Ok(e) => match e.get_description()?.find(|n| n.node_name == "#text") {
            Some(n) => println!("Result for `{}`: {}", &input, n.node_value),
            None => eprintln!("No shortdescription-node found on page"),
        },
    }
    Ok(())
}

fn main() -> Result<()> {
    let input = "Elvis Aaron Presley";
    query(input)
}