I have the below xpath that works on my XML easily when only one status needs to be checked:
.//Time[@TOD='Day']//Task[@Status='COMPLETED']
What is the way that I would be able to do something like so:
.//Time[@TOD='Day']//Task[@Status in 'COMPLETED', 'BLOCKED']
etc
Basically status attrib to have a in check rather than an equal to