cssify
cssify copied to clipboard
XPATH to CSS translator
Hi The tool doesn't support xpath property which elements not contains attribute eg. span[not(contains(@attribute,"value_string"))] should convert to --> span:not([attribute*=value_string]) thank you!
I am using cssify and ran into a problem with some rather unusual html elements, which the package doesn't not (yet) recognise. And I was wondering if this could be...
While submitting the request, facing the `No 'Access-Control-Allow-Origin'` error.
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.3 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...
a = "//a[contains(@href,'attestation-upload')]" cssify(a) output: a[href*=attestation-upload] expected condition: in this case proper css selector, or the more accurate selector would be one with quoted value: a[href*='attestation-upload'] I believe there should...
//sgswidget//a[contains(@href,'dashboard/profile')] is translated proprely: 'sgswidget a[href*=dashboard/profile]' current behaviour: just add a dash to sgswidget //sgs-widget//a[contains(@href,'dashboard/profile')] and you will get the error: cssify.cssify.XpathException: Invalid or unsupported Xpath: //sgs-widget//a[contains(@href,'dashboard/profile')] expected condition: //sgs-widget//a[contains(@href,'dashboard/profile')]...
Bumps [cryptography](https://github.com/pyca/cryptography) from 3.3.1 to 3.3.2. Changelog Sourced from cryptography's changelog. 3.3.2 - 2021-02-07 * **SECURITY ISSUE:** Fixed a bug where certain sequences of ``update()`` calls when symmetrically encrypting very...
changed the print statements by print functions. replaced the old strings format. Now the exceptions catched are named with `as`.
I provide input and there's nothing in the output...
Sup! Thank you for lib, but now we can't use it cause of bug with indexes. When I put xpath with index more than 9: ```python cssify("/li[10]") # cssify.cssify.XpathException: Invalid...