visdom
visdom copied to clipboard
A library use jQuery like API for html parsing & node selecting & node mutation, suitable for web scraping and html confusion.
Results
2
visdom issues
Sort by
recently updated
recently updated
newest added
Hi i wanted to know if this supports xpath selectors like this `"//h1[contains(text(),'Search Results')]/following-sibling::div[1]/div"` ?
enhancement
````rust use visdom::{types::BoxDynError, Vis}; fn main()->Result { const HTML:&str = r#""#; let mut v = Vis::load(HTML)?; v.set_attr("class", Some("ppp")); println!("{}",v.outer_html()); Ok(()) } ```` ### 输出: > ### 期望: > 对比Jquery ````javascript...