I am using Xpath to scrape a website (legitimately for once!!) thanks to the amazing powers of Visual Web Ripper.
One of the fields of content I need to be able to get is the P tag contents following a H3 tag. Now this is fine if I want the next one I can use the following code:
//DIV[@id='content']/H3[. = 'Prices']/following-sibling::P[1]
But how can I say I want the content of all P tags up-until the next H3?