Just two questions:
For example:
from lxml import etree
from StringIO import StringIO
tree = etree.parse(StringIO('<foo><bar></bar></foo>'))
try:
tree.xpath('\BAD XPATH')
print '1. Valid XPath'
except etree.XPathEvalError, e:
print '1. Invalid XPath: ', e
if not tree.xpath('/foo/xxx'):
print '2. Requested node does not exist.'
Runs as follows:
1. Invalid XPath: Invalid expression
2. Requested node does not exist.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With