TCA.vuserStatusMessage

Indicates which Vuser is handling a specific script.

TCA.vuserStatusMessage(text);

Arguments

text. (string) Any text string.

Return value

A promise that will be fulfilled with no arguments.

Example

Copy code
TCA.vuserStatusMessage("FlightStatus").then(function(){
  TCA.done();
}).catch(function (error) {
  TCA.doneWithError(error);
});