Attribute selectors
Xpath | CSS |
---|---|
//*[@id="id"] |
#id |
//*[@class="class"] |
.class |
//input[@type="submit"] |
input[type="submit"] |
//a[@id="abc"][@for="xyz"] |
a#abc[for="xyz"] |
//a[@rel] |
a[rel] |
//a[starts-with(@href, '/')] |
a[href^='/'] |
//a[ends-with(@href, '.pdf')] |
a[href$='pdf'] |
//a[contains(@href, '://')] |
a[href*=': //'] |
//a[contains(@rel, 'help')] |
a[rel~='help'] |
Comments