AddToHelixALM

Note: This statement was previously named AddToTestTrack.

Adds an issue created by the NewIssue statement to the Helix ALM project configured for the workspace after all field values to include are set.

You can also use the AddIssue statement to create a new issue that includes only the Summary, Description, Steps to Reproduce, and Other Hardware and Software fields and add it to the Helix ALM project at the same time.

Note: This statement cannot be used in load test scripts.

Syntax

AddToHelixALM(Issue)

Arguments

Argument Description
Issue Issue object to add to the Helix ALM project. Use the NewIssue statement to create the issue object.

Example

issue = NewIssue()

' Adds the issue to Helix ALM

AddToHelixALM(issue)

 

You can also call this statement directly on a Helix ALM issue object.

issue = NewIssue()

issue.AddToHelixALM()