EnvironmentProfile Object

Relevant for: API testing only

Description

Accesses the environmental variables for a test.

Note: If you are using test profiles for a test, you should use the TestProfile object instead.

Back to top

Syntax

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

Back to top

Supported Methods

  • GetType

  • GetVariablesNames

  • GetVariableValue

  • SetVariableValue

  • ToString

Back to top

Example

this.ConcatenateStringsActivity4.Context.EnvironmentProfile.GetVariablesNames().ToString();

Back to top