Indicates the beginning of a Helix ALM test case step.
This statement is automatically created from existing steps when creating scripts from test cases. The actions to perform the step or the expected results must follow this statement. See Creating scripts from Helix ALM test cases.
Note: This statement cannot be used in load test scripts.
Syntax
TestCaseStep("Name", "Description")
Arguments
| Argument | Description |
|---|---|
| Name | Step name. |
| Description | Step description. |
Example
TestCaseStep("Step 1", "Enter username in User field.")
Window("WysiCorp CRMLogin").EditBox("textBoxUser").TypeText("sales")
TestCaseStep("Expected result 1", "Username appears in User field.")