โ— STATUS: READY

XPath & CSS Selector Tester

Paste any HTML, choose your selector type, and test your expression instantly โ€” all in-browser. Zero data sent to servers.

Full HTML documents or fragments are both supported.

Keyboard shortcut: Ctrl + Enter

Quick Reference

XPathCSSMatches
//divdivAll div elements
//div[@id='main']#mainElement with id "main"
//a[@href]a[href]All links with href
//h2[contains(text(),'Guide')]โ€”H2 containing "Guide"
(//p)[1]p:first-of-typeFirst paragraph