I have two Xpath expressions …
//*[@id='gutter']/p[strong[text()='Date:']]/text()
//*[@id='gutter']/p[strong[text()='Time:']]/text()
How do I write a single xpath expression that combines the two above and would return the same node-set as combining the results of running each of the expressions above individually?
How about:
which is more or less self-explanatory.