Example Scenarios of GetRoProperty in UFT – User friendly Tech help
1. How to fetch the title of opened browser using UFT? n Variable DeclarationDim sTitle , objDesc ,objBrowser’Creating Description ObjectSet objDesc = Description.Create’Description object is pointing to BrowserobjDesc(“micclass”).value = “Browser”‘Fetching all the opened BrowserSet objBrowser = Desktop.ChildObjects(objDesc)’Taking the tile of the opened browser using GetROPropertyFor iCounter = 0 to objBrowser.Count -1 MsgBox “Title of opened…