Quote:
Originally Posted by kovidgoyal
your xpath expression is matching both the p and the span tags. Use
Code:
//h:p
instead of //*
|
Thanks a lot, that did the trick. I don't understand why it works as the span tag doesn't start with '#' , but the change certainly worked.
Thanks again, Wolf.