how can i express in xpath
a) need select elements which contains specified keyword. (how to make it case insensitive?)
z/x/c/v/a[normalize-space(text())='keyword']
b) need to select elements which contains any of given text() (case insensitive?)
z/x/c/v/a[normalize-space(text())='keyword|keyword2|keyword3']
Lastly,
a) how to express the node's innerHTML ?
z/x/c/v/a[normalize-space(text())='keyword'].innerHTML ?
NOTE: i am using a html parser.