cssify icon indicating copy to clipboard operation
cssify copied to clipboard

translation inconsistency: no quote in attribute selector

Open justnpT opened this issue 3 years ago • 1 comments

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 be an elegant way to make it happen

justnpT avatar Mar 05 '21 12:03 justnpT