AbstractTestItemGetVariables Method |
Gets All variables available for the current test scope.
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public List<Variable> GetVariables(
bool isRecursive
)
Public Function GetVariables (
isRecursive As Boolean
) As List(Of Variable)
public:
List<Variable^>^ GetVariables(
bool isRecursive
)
member GetVariables :
isRecursive : bool -> List<Variable>
Parameters
- isRecursive
- Type: SystemBoolean
if set to true this function will retrieved also the variables specified in the parent item.
Return Value
Type:
ListVariableA List contains all the variables of this test item scope.
Remarks
When isRecursive is marked as , The search will be performed on current level and all parent levels until the Project.
See Also