TruClient functions

You can use TruClient API functions in JavaScript code for your TruClient scripts.

Function types

The TruClient API includes both synchronous and asynchronous functions.

  • Synchronous functions: These functions can be used in every field in TruClient that can evaluate JavaScript, such as in step arguments, objects, and descriptor fields. However, while synchronous functions can be used in objects and descriptor fields, this use is not recommended because it can cause unexpected results.

    For details on supported functions, see TruClient - Web synchronous functions in the Function Reference .

  • Asynchronous functions: These functions can be used in step argument fields in TruClient that can evaluate JavaScript. They cannot be used in objects and descriptor fields.

    For details on supported functions, see TruClient - Web asynchronous functions in the Function Reference .

    For details on how to use asynchronous APIs, see Use asynchronous APIs in JavaScript code.

Note:  

Back to top

General notes on using TruClient functions

  • Use escape backslashes in path arguments. For example, c:\\temp\\myFile.ps1.

  • The following arguments can be used with any method:

    • object. The step's object as defined in the application.

    • AUT.window. Points to the global window object within the active window or tab of the application.

    • AUT.document. The global document object within the active window or tab of the application.

    The AUT API provides a common mechanism for handing the AUT window and AUT document for all TruClient protocols. For details, see Use JavaScript in the AUT window.

Back to top

See also: