Desktop

Desktop

Desktop

Constructor

new Desktop()

A class to create Window or Dialog Test Object. Note: To create a Window or Dialog Test Object, use Desktop.$

Methods

In this topic:

$(description) → {*}

Creates a Window or Dialog Test Object based on the description. This operation does not cause UFT Developer to search for the object in the AUT. UFT Developer interacts with the application only when a step runs that performs an operation on the AUT object.
Parameters:
NameTypeDescription
descriptionObjectThe description of the test object (Window or Dialog).
Returns:
the new Window or Dialog test object with the provided description. An error is thrown if the description is not a window or dialog.
Type
*

launchAut(fileName, argsopt, workingDirectoryopt) → {Promise.<Object>}

Launches an AUT using the file name. To used this method, you must create an application allowlist file. For details, see Add SDK code to your tests in the UFT Developer Help Center.
Parameters:
NameTypeAttributesDescription
fileNamestringThe name of the AUT file to launch. Specify only the name, or the full or relative path to the file.
argsArray.<string> <optional>
A list of arguments.
workingDirectorystring <optional>
A working directory.
Returns:
a promise that is fulfilled with the launched AUT
Type
Promise.<Object>