Full HTML documents or fragments are both supported.
Keyboard shortcut: Ctrl + Enter
Quick Reference
| XPath | CSS | Matches |
|---|---|---|
| //div | div | All div elements |
| //div[@id='main'] | #main | Element with id "main" |
| //a[@href] | a[href] | All links with href |
| //h2[contains(text(),'Guide')] | โ | H2 containing "Guide" |
| (//p)[1] | p:first-of-type | First paragraph |