There are several ways to refer to objects in Visual Basic applications. If you use Name Mapping in your test project, you can refer to the application objects using their names specified in Name Mapping. For objects that are not in Name Mapping, you can use the naming syntax that directly includes identification properties and values of these objects. This topic explains both approaches.
About Object Names in the Object Browser
Addressing Visual Basic Objects Using Name Mapping and Aliases
Addressing Visual Basic Objects Without Name Mapping
Combining Mapped and Unmapped Object Names
About Object Names in the Object Browser
You can explore the object structure of the tested application in the Object Browser. Below is a sample view of a Visual Basic application's hierarchy displayed in the Object Browser:
Here, the Process("Orders")
branch of the Sys
object corresponds to your tested Visual Basic application and the other objects correspond to the application’s windows, controls and objects.
To refer to an individual object in the tested Visual Basic application, select the needed object in the Object Browser or Object Spy. These tools display the selected object’s name above the member list. From the right-click menu, you can copy this name to the clipboard and then insert it into your test.
You may notice that this name differs from what you see in the object tree on the left of the Object Browser. This is because the name displayed at the top of the panel uses object aliases if they are defined, whereas the object tree uses the naming syntax that includes identification properties. The differences between the two object naming syntaxes are explained in the Addressing Visual Basic Objects Using Name Mapping and Aliases and Addressing Visual Basic Objects Without Name Mapping sections below.
You can also learn the object names in different syntaxes by looking at the following object properties:
-
MappedName
- the object’s fully-qualified alias (including the aliases of all parent objects). This name is used for the object by default in your tests. Note that if the selected object is not in Name Mapping, this property is empty. -
Name
- the object name that includes the object's identification properties. This is the same name you see in the Object Browser’s object tree. For an explanation of this syntax, see below. -
FullName
- the object’s fully-qualified name in the syntax that includes the identification properties. This name consists of the object’sName
property value and theName
s property value of all of the object's parent objects. See below.
Addressing Visual Basic Objects Using Name Mapping and Aliases
By default, TestComplete uses the object names from Name Mapping (the object repository) to refer to individual objects in Visual Basic applications under test. These names are called aliases. When you are recording a test, TestComplete automatically adds the recorded objects to Name Mapping and generates aliases for them.
You can see the available object aliases and add new aliases in the Name Mapping editor.
Here, Mapped Objects and Aliases display the hierarchy of mapped objects and their aliases, respectively. The fully-qualified alias that can be used to refer to an object is displayed in the top right part of the Name Mapping editor (see the image above). It starts with Aliases and includes aliases of all of the object’s parent objects separated by dots (in VBScript, JScript, Python and DelphiScript projects) or square brackets (in C++Script and C#Script projects). For example, in the image above you can see that you can refer to the ListView object using the following name:
JavaScript, JScript
Aliases.Orders.ListView
Python
Aliases.Orders.ListView
VBScript
Aliases.Orders.ListView
DelphiScript
Aliases.Orders.ListView
C++Script, C#Script
Aliases["Orders"]["ListView"]
You can copy object aliases from the Name Mapping editor to the clipboard and use them when manually adding test operations over the tested application’s objects.
The following example shows a sample item selection operation over the ListView control specified by an alias:
Note: | For simplicity, keyword tests do not display the Aliases identifier at the beginning of object aliases.
Also, keyword tests may not display intermediate objects in the application’s object hierarchy. To view the full name of an operation’s target object, double-click the operation or increase the Maximum depth option in the Keyword Test Editor - Groups options. |
JavaScript, JScript
Aliases.Orders.ListView.ClickItem("Samuel Clemens", 0);
Python
Aliases.Orders.ListView.ClickItem("Samuel Clemens", 0);
VBScript
Call Aliases.Orders.ListView.ClickItem("Samuel Clemens", 0)
DelphiScript
Aliases.Orders.ListView.ClickItem('Samuel Clemens', 0);
C++Script, C#Script
Aliases["Orders"]["ListView"]["ClickItem"]("Samuel Clemens", 0);
Note that the fully-qualified mapped name for this object is the following:
JavaScript, JScript
NameMapping.Sys.Orders.OrderFrm.ListView
Python
NameMapping.Sys.Orders.OrderFrm.ListView
VBScript
NameMapping.Sys.Orders.OrderFrm.ListView
DelphiScript
NameMapping.Sys.Orders.OrderFrm.ListView
C++Script, C#Script
NameMapping["Sys"]["Orders"]["OrderFrm"]["ListView"]
Since the OrderFrm object is of no interest for our test, we exclude it from the path to the ListView object in the Alias tree, so the object hierarchy becomes shorter. Using aliases lets you make your scripts shorter and more readable.
For more information about using Name Mapping and aliases, see Name Mapping and Access Objects by Aliases.
Addressing Visual Basic Objects Without Name Mapping
Your tests can work not only with applications and objects added to Name Mapping, but also with any other running applications, their windows and controls. These objects can be addressed by using a syntax that directly includes identification property values.
Consider the following sample code and keyword test that illustrate how you can refer to an object in your Visual Basic application:
JavaScript, JScript
Sys.Process("Orders").VBObject("MainForm").VBObject("ListView").ClickItem("Samuel Clemens", 0);
Python
Sys.Process("Orders").VBObject("MainForm").VBObject("ListView").ClickItem("Samuel Clemens", 0);
VBScript
Call Sys.Process("Orders").VBObject("MainForm").VBObject("ListView").ClickItem("Samuel Clemens", 0)
DelphiScript
Sys.Process('Orders').VBObject('MainForm').VBObject('ListView').ClickItem('Samuel Clemens', 0);
C++Script, C#Script
Sys["Process"]("Orders")["VBObject"]("MainForm")["VBObject"]("ListView")["ClickItem"]("Samuel Clemens", 0);
To learn the exact syntax for referring to a particular object, use the Object Browser - the object tree and the FullName
property of objects always use this naming syntax. See the About Object Names in the Object Browser section above.
Let’s have a closer look at this notation and its components.
-
The notation starts with the
Sys
object that represents the operating system. -
The next object,
Process("Orders")
, represents the Visual Basic application with the file name Orders.exe. -
The other objects represent windows and controls in the Visual Basic application. The default and most commonly used syntax for these objects is as follows:
VBObject(NativeName)
Here, NativeName is the object name (the value of the native
Name
property). If the application code does not specify theName
property, TestComplete addresses the application’s objects in the following way:- TestComplete addresses windowed controls (for example,
Edit
instances) using theWindow
method of the parent object. For a detailed description of theWindow
notation, see the description of the Window method. - For non-windowed controls and forms (for example,
Label
instances) TestComplete generates the control’s name in theItem_Index
form, whereIndex
is the object’s index among other non-windowed sibling objects that are located on the same hierarchy level (VBObject("Item")
,VBObject("Item_2")
and so on).
For more information about the Visual Basic object addressing syntax and its parameters, see the description of the
VBObject
notation. - TestComplete addresses windowed controls (for example,
For examples of this syntax applied to objects in your tested Visual Basic application, examine your application in the Object Browser. You can also copy this syntax from the Object Browser and paste it to your test in order not to manually type it.
Remarks
The VBObject
notation is used for Visual Basic GUI objects of any type - forms, buttons, combo boxes, grids and so on. The word Object here does not mean that TestComplete does not identify the object type. Just the opposite, TestComplete supports many different types of Visual Basic GUI objects and provides high-level methods and properties for automating operations over them. See Support for Visual Basic Applications' Controls for more information.
Combining Mapped and Unmapped Object Names
You can combine aliases specified in Name Mapping and the VBObject
notation when referencing an object hierarchy in tests. For example, you can use aliases for parent objects and the VBObject(NativeName)
notation for child objects:
JavaScript, JScript
Aliases.Orders.MainForm.VBObject("ListView").ClickItem("Samuel Clemens", 0);
Python
Aliases.Orders.MainForm.VBObject("ListView").ClickItem("Samuel Clemens", 0);
VBScript
Call Aliases.Orders.MainForm.VBObject("ListView").ClickItem("Samuel Clemens", 0)
DelphiScript
Aliases.Orders.MainForm.VBObject('ListView').ClickItem('Samuel Clemens', 0);
C++Script, C#Script
Aliases["Orders"]["MainForm"]["VBObject"]("ListView")["ClickItem"]("Samuel Clemens", 0);
However, keep in mind that aliases must always precede the VBObject
notation in the object hierarchy. Aliases cannot be used after the VBObject
notation within the same statement. That is, the following statement is invalid:
JavaScript, JScript
Sys.Process("Orders").VBObject("MainForm").ListView.ClickItem("Samuel Clemens", 0);
Python
Sys.Process("Orders").VBObject("MainForm").ListView.ClickItem("Samuel Clemens", 0);
VBScript
Call Sys.Process("Orders").VBObject("MainForm").ListView.ClickItem("Samuel Clemens", 0)
DelphiScript
Sys.Process('Orders').VBObject('MainForm').ListView.ClickItem('Samuel Clemens', 0);
C++Script, C#Script
Sys["Process"]("Orders")["VBObject"]("MainForm")["ListView"]["ClickItem"]("Samuel Clemens", 0);
Accessing Non-Visual Objects in Visual Basic Applications.
Visual Basic applications can include non-visual objects that are not displayed in the Object Browser. However, you can access these objects from your tests.
To get access to a non-visual object, you need to find a property, field or method of another object (visual or non-visual) that would return a reference to the desired object. The parent object can be either visual or non-visual, but the root object in the tree of parent objects must be a visual object. To find the needed property or method, examine the tested Visual Basic application in the Object Browser or ask the application developers where you can find it.
Currently, TestComplete does not have access to non-visual objects that cannot be obtained through methods or properties of visual objects. To be able to access a non-visual object, you need to add a method or property to a certain visual object (form) of your application that will return a reference to the desired object.
Further Reading
The following topics explain how to refer to objects in Visual Basic applications while performing common operations over them:
See Also
Testing Visual Basic Applications
Testing Visual Basic Applications - Overview
Support for Visual Basic Applications' Controls
Accessing Native Properties and Methods of Visual Basic Objects