src/xmlUtils.py [103:110]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                elif test[0] == '^':
                    if "=" in test:
                        element, value = test[1:].split("=", 1)
                    else:
                        element = test[1:]
                        value = None
                    for child in node.getchildren():
                        if child.tag == element and (value is None or child.text == value):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



verifiers/xmlElementMatch.py [155:162]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        elif test[0] == '^':
            if "=" in test:
                element, value = test[1:].split("=", 1)
            else:
                element = test[1:]
                value = None
            for child in node.getchildren():
                if child.tag == element and (value is None or child.text == value):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



