xcss 0.1.1

Rust Package to Convert the Xpath selectors to CSS selector
Documentation
1
2
3
4
5
6

fn main() {
    let xpath = "//*[@id='foo']";
    let css_selector = xcss::xcss(xpath);
    println!("{}", css_selector);
}