Quote:
Originally Posted by wallcraft
If your original re:test version worked, all you need do is add another re:test after an or:
Code:
//h:span[re:test(@class, "section-title-2", "i") or re:test(@class, "section-title-3", "i")]
Otherwise, try:
Code:
//*[@class = 'chapter-title']
//*[@class = 'chapter-title-1']
//*[@class = 'chapter-title-2' or @class = 'chapter-title-3']
|
Thank's a lot. I'm working in this right now.