Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 782 Bytes

README.rst

File metadata and controls

37 lines (26 loc) · 782 Bytes

cssify

Get your XPATHs translated to css automatically! (don't go to crazy on what you want to translate, this script is smart but won't do your breakfast).

Usage

From the console:

$ ./cssify.py '//a'
a
$ ./cssify.py '//a[@id="bleh"]'
a#bleh

From python:

>>> from cssify import cssify
>>> cssify('//a')
'a'
>>> cssify('//a[@id="bleh"]')
'a#bleh'

From your browser:

Just open http://cssify.appspot.com

Known Issues and unsupported XPATHs

Known issues should have failing tests. Tests are part of the script itself. They use the doctest format. To run tests and see any known issue (failing test), just run cssify with the -t flag:

$ ./cssify.py -t