Asynchronous functions
Available in version: TruClient 2020 SP1 and later
The below asynchronous 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 how to use asynchronous APIs, see Use asynchronous APIs in JavaScript code.
Note: Asynchronous APIs are not supported in TruClient - Native Mobile scripts. We recommend using Generic API Action steps instead. For details, see Replace synchronous APIs with Generic API Action steps.
In this topic:
- General notes on using TruClient functions
- General functions
- Vuser functions
- Browser functions
- VTS functions
- Environment functions
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. Note that
AUT.window.location
cannot be used with Internet Explorer. UseAUT.document.URL
instead. -
AUT.document. The global document object within the active window or tab of the application.
The AUT API provfides a common mechanism for handing the AUT window and AUT document for all TruClient protocols. For details, see Using JavaScript in the AUT window.
-