Hierarchy Change Check
Hello!
I'm wondering if there is a tool is or function that would allow test complete to compare the object Hierarchy of a process against a previous build of a process. Or how to make a keyword test that can do that.
Consider this scenario: A new build is made for the desktop application that I am testing. I want to be able to quickly check whether changes were made in the application that could effect the test scripts. Such as a button being moved or the name of a drop-down menu item being changed. Is there a way to check whether the object Hierarchy of a process has changed?
I'm looking at the Process Action Operations and it seems like there should be a way to do this. Maybe get the child count of the process and compare it to child count of the previous build? Maybe compare the dump file of the new build against a dump file of the previous build? Compare screen shots of the object browser?
Any thoughts would be appreciated!
Hi SuperTester,
Could you please check if the Object Snapshots feature works for you? You can find more information here:
Hello,
You can always use this solution:
function compareObject() { var obj = Sys.Process("notepad++"); var FileName = "C:\\work\\ObjectInfo.txt"; // the path to the file the snapshot is saved to var SaveRecursive = true; // properties of the object's child objects are saved as well. var SaveAllProperties = true; var AdditionalProperties = "The file contains the snapshot of an object that corresponds to notepad++"; var SaveFields = true; var SaveMethods = true; // Saves the snapshot aqObject.SaveObjectSnapshotToFile(obj, FileName, SaveRecursive, SaveAllProperties, AdditionalProperties, SaveFields, SaveMethods); let xml = aqFile.OpenTextFile("C:\\work\\ObjectInfo.txt", aqFile.faRead, aqFile.ctANSI); let result = aqFile.Compare("C:\\work\\ObjectInfo.txt", "C:\\work\\ObjectInfo2.txt") }
the default object returned from SaveObjectSnapshotToFile its an .xml saved with .txt extension so to be more specific You can always parse this .xml into .json and Log differences in Test Log results.