New to xml. Looking for XPath to search a xml file with python ElementTree format
<root> <child>One</child> <child>Two</child> <child>Three</child> </root>
to do search for child with ‘Two’ and return true/false
if it was started off like
from elementtree import ElementTree root = ElementTree.parse(open(PathFile)).getroot()
how can this be achieved
I’ve been playing with ElementTree lately, lets see..
This is what you look for right? It says ElementPath has just limited xpath support though, but it does not say not support at all.