TC.advanceParam

Advances the specified parameter to the next value in the file.

This must be a parameter of type file or unique number; the argument type is set in VuGen.

TC.advanceParam(name);

Arguments

name. (string) Name of the parameter to advance.

Return value

A promise that is fulfilled with undefined upon success.

Example

Copy code
(async ()=>{
    await TC.advanceParam("myParam");
})();