use capricorn::parse;
use quicli::prelude::*;
#[test]
fn test_each() -> Result<(), Box<dyn std::error::Error>> {
let yml = read_file("./test_pages/default_val.yml").unwrap();
let params: parse::HashMapSelectParams = serde_yaml::from_str(&yml).unwrap();
let html = read_file("./test_pages/last.html").unwrap();
let r = parse::parse_html(¶ms, &html);
println!("{:?}", r);
Ok(())
}