This tutorial interprets the Expert View and gives its Syntax
Adobe Flash Player not installed or older than 9.0.115!
Video Transcript with Key Takeaways highlighted:
In the Expert View , each line represents a Test Step in VB Script
To understand expert view better , lets analyze Step # 2 from our TEST recorded earlier
An Object's Name is displayed in parentheses following the Object Type.Here the Object Name is Login and Object Type is Dialog
Objects in Object Hierarchy are separated by a "dot".Here Dialog and WinEdit are fall in the same Object Hierarchy
Just to put things in perspective, Object Hierarchy is Object Oriented Concept where set of objects that are grouped together in a parent-child relationship.In our case Dialog Box is the Parent Object and WinEdit is the Child Object
The Operation performed on the object is always displayed at the end of the statement followed by any values associated with the operation.Here the word "Guru" is inserted in the AgentName Edit Box using the Set Method
Syntax for a statement in expert view is GUI object on which the operation is performed along with its complete hierarchy followed by the Operation on the Object and value associated with that Operation