I have an XML file and I need to start reading from a specific line number. As if the previous lines don't exist.
For example, if I need to count number of nodes starting from line # 23. This is to be done using VBScript in UFT (QTP).
I have an XML file and I need to start reading from a specific line number. As if the previous lines don't exist.
For example, if I need to count number of nodes starting from line # 23. This is to be done using VBScript in UFT (QTP).
You can skip lines in text (line orientated) files by using the SkipLine method.
But XML documents are trees of nodes/elements. Whitespace out of elements has no meaning. So it may make sense to ask for the number of child nodes of a specific node (whether it starts on line #23 or not).
So