XmlUtil Object in UFT

XMLUtil object is used to work with XML files in UFT. Look at below XML file.
 
<cars>

<car>
<name>i10</name>
<price>2222</price>
</car>

</cars>

You can read above XML file using XMLUtil object using below script.
 
Set xmlObj = XMLUtil.CreateXML()
xmlObj.LoadFile("car.xml")
Msgbox xmlObj.ToString()

 
Set cars= xmlObj.ChildElementsByPath("//cars//car//name")
 msgbox cars.Count
 
'iterate through the collection of cars

 For i = 1 to cars.Count
   msgbox cars.Item(i).Value()
 
 Next     

Web development and Automation testing

solutions delivered!!