AddNewAction Method

Description

Creates a new action with the specified script content and adds call to it from the test.

Syntax

Visual Basic
Public Function AddNewAction( _
   ByVal Name As String, _
   ByVal Description As String, _
   ByVal ScriptContent As String, _
   ByVal Reusable As Boolean, _
   ByVal ActionPosition As qtActionPosition _
) As Action

Parameters

Name
The name of the new action.
Description
The textual description of the action.
ScriptContent
A single string containing the VBScript content of the action script.
Reusable
Indicates whether the action is set as a reusable action.
ActionPosition
ValueDescription
qtAtBeginingThe beginning of the test or parent action.
qtAtEndThe end of the test or parent action.
Indicates whether to add the call to the new action as the first or last step in the test.

Remarks

  • If the script contains syntax or other errors, the AddNewAction step fails.
  • Using this method, you can add the new action only to the beginning or end of the test.
  • You can move the action to another location only by opening the test in the UFT One application and modifying its location manually.

Example

See Also