I recursively pass through all the nodes in an XML:
def verify_elements_children(root):
if root.childNodes:
for node in root.childNodes:
if node.nodeType == node.ELEMENT_NODE:
if node.tagName in config_elements_children[node.parentNode.tagName]:
# print node.toxml()
verify_elements_children(node)
But I don't know how to get all the attributes names of the selected the selected node?
nodeobject, it has to do with the question that I need the answer in this case. – Eduard Florinescu Oct 1 '12 at 15:42