Siblings
Xpath | CSS |
---|---|
//h1/following-sibling::ul |
h1 ~ ul |
//h1/following-sibling::ul[1] |
h1 + ul |
//h1/following-sibling::[@id="id"] |
h1 ~ #id |
Comments
Xpath | CSS |
---|---|
//h1/following-sibling::ul |
h1 ~ ul |
//h1/following-sibling::ul[1] |
h1 + ul |
//h1/following-sibling::[@id="id"] |
h1 ~ #id |