TestProfile Object

Relevant for: API testing only

Description

Accesses the values of the environment and user variables for the currently active test profile as specified in the Properties pane.

Back to top

Syntax

this.<activity>.Context.TestProfile.<supported method>

Back to top

Supported Methods

  • GetType

  • GetVariableNames

  • GetVariableValue

  • SetVariableValue

Back to top

Example

this.ConcatenateStringsActivity4.Context.TestProfile.GetVariableValue("Prefix");

Back to top