xcss

Crates.ioxcss
lib.rsxcss
version0.1.1
sourcesrc
created_at2023-03-11 12:35:53.165674
updated_at2023-03-11 12:51:33.231307
descriptionRust Package to Convert the Xpath selectors to CSS selector
homepage
repositoryhttps://github.com/xinnypie/xcss
max_upload_size
id807244
size2,515
Phanuprat Suwannachan (m1ntpie)

documentation

README

Xcss

Rust Package to Convert the Xpath selectors to CSS selector.

Usage

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

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Commit count: 6

cargo fmt