Created
March 26, 2013 17:34
-
-
Save nicholasjhenry/5247401 to your computer and use it in GitHub Desktop.
XPath sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //table//tr[@class='store_credit'] | |
| [ | |
| td[@class='description' and .='Order Refund'] and | |
| td[@class='remaining_amount' and contains(., '10')] and | |
| td[@class='amount' and contains(., '10')] and | |
| td[@class='expires_on' and contains(., '2013')] and | |
| td[@class='expires_on' and contains(., '03')] and | |
| td[@class='expires_on' and contains(., '10')] | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment