Creating interface definitions
Create interface definitions to enable a test to interact with an application window.In this first exercise, you will create definitions manually. In a later exercise, you will use the TestArchitect Interface Viewer to verify the definitions you created and create further definitions.
Before proceeding: Ensure that you are logged in to the SampleRepository
. In the TestArchitect explorer tree, expand the Car Rental
project.
Expand the Interfaces node of the Car Rental project. The interface Car Rental is displayed as a subnode of Interfaces. Expand it as well.
A set of nodes representing interface entities is displayed beneath the
Car Rental
interface.Notes:If you’re wondering why a project might have more than a single interface, the typical reason is that the system under test may have more than a single application, and it makes sense to have one interface per application.Right-click the Car Rental interface node and select New Interface Entity.
The New Interface Entity dialog box appears.
Type
my login
in the name field, and click Create.A new interface entity worksheet opens in the test editor, ready for your input.
Notes:Typically, you will create an interface entity for each window or dialog box in the application under test — or at least for the windows and dialog boxes that you intend to test.
Now you will create interface definitions, each of which maps a GUI element (window or control) to a TA name. As seen in Lesson #2: Interfacing with a GUI, TA names are used by the tests you create to refer to the GUI elements of the AUT.
Two types of interface definitions exist: interface entity setting
, to map a TA name to a window, and interface element
, to map a TA name to a control (or HTML element). These definitions are implemented as built-in actions, but ones which are valid only in the context of an interface entity (not in a test module or action.)
Begin by linking this interface entity to the Car Rental application’s Login window. The interface entity setting
action links the TA name which you’ve already chosen (my login
, the name of your interface entity) to a window by specifying a property of that window and its value.
In the leftmost cell of a row near the top of the editor, type
interface entity setting
. PressTab
.Headers for arguments setting and value appear over the adjacent cells.
Type
title
for the setting argument. PressTab
and typeCar Rental-Login
for the value. PressEnter
.You have now associated the window whose title property is
Car Rental-Login
with the TA name my login.Notes:title is the property most commonly used for identifying windows. Also, note the importance of this property-value pair being unique across all application windows that may be instantiated on the test system during testing.
Now map the User name textbox
control of the Login window to a TA name.
Select a cell a few rows down in column A and type
interface element
. PressTab
.Headers for arguments ta name and ta class appear over the adjacent cells.
As a value for ta name, enter
my user name
. PressTab
. In the next cell, for ta class, typetextbox
. PressTab
.TestArchitect maintains a set of class names, or TA classes, that it applies to GUI controls.
textbox
is a TA class.
The TA name my user name references a control of TA class textbox
, but to fully identify the control, you must specify at least one property-value pair in the interface element
line. This is done in adjacent columns. Enter the property name as the header and the identifying property value beneath it.
Press the
Up Arrow
key and typelabel
. PressDown Arrow
and typeUser name
.The TA name my user name now identifies a control that:
- exists in the Car Rental-Login window,
- is of class
textbox
, and - has a property named label which has the value User name.Tip:When a single property-value pair is insufficient to ensure that a control is uniquely identified, use additional property-value pairs in adjacent columns of the
interface element
action.
Click Save on the toolbar.
You have created a new interface entity that points to the Car Rental-Login window, along with a single interface element that points to a control.
For any given window or dialog box of an AUT, you can have more than one interface entity. For example, if you haven’t deleted anything, you now have two interface entities that reference the Car Rental-Login window: my login
, which you just created, and login
, which came with the sample repository.
Now that you have created some interface definitions manually, you can use the Interface Viewer to verify them.
Related concepts