src/xmlUtils.py [65:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if root.tag != root_path:
            return None
        nodes = root.findall(child_path)
    else:
        root_path = actual_path
        child_path = None
        nodes = (root,)

    if len(nodes) == 0:
        return None

    results = []

    if tests:
        tests = [item[:-1] for item in tests.split('[')]
        for test in tests:
            for node in nodes:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



verifiers/xmlElementMatch.py [101:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if root.tag != root_path:
                return None
            nodes = root.findall(child_path)
        else:
            root_path = actual_path
            child_path = None
            nodes = (root,)

        if len(nodes) == 0:
            return None

        results = []

        if tests:
            tests = [item[:-1] for item in tests.split('[')]
            for test in tests:
                for node in nodes:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



