Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 319 Bytes

README.md

File metadata and controls

22 lines (21 loc) · 319 Bytes

Css2Xpath

##CSS Selectors##

  • E
  • E F
  • E > F
  • .class
  • #id
  • :first-child
  • :last-child
  • :nth-child
  • :not()
  • [attribute]
  • [attribute="value"]
  • [attribute^="value"]
  • [attribute$="value"]
  • [attribute*="value"]
  • [attribute|="value"]
  • [attribute~="value"]
  • [attribute!="value"]