Skip to content

rivlinp/cssify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

XPATH to CSS translator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published