...
which can be included in future releases.
Cps Xpath Possibilities
Jira : CPS-
...
1221
1.Using >,< operators
Example | Description |
/bookstore/book[@price>800] | Select price nodes with price>800 |
/bookstore/book[@price>800 and @price<1000] | Select price nodes between 800-1000 |
/bookstore/book[@price>800]/title | selects all the title nodes with a price higher than 800 |
...