The manual testing functionality is deprecated. Do not use it for creating new tests. It will be removed in a future TestComplete release. |
Occurs when TestComplete obtains information about the manual test's next step that is to be executed.
Declaration
OnGetNextStep(Sender, StepParams)
Parameters
Sender | [in] | Required | Variant | |
StepParams | [in] | Required | The ManualTestingGetNextStepEventParams object |
Description
The event occurs when the testing engine obtains information about the next step that is to be executed. This event occurs before the OnBeforeStep
event is generated. Write an OnGetNextStep
event handler to perform actions before the manual test's next step is performed.
Parameters
The event has the following parameters:
Sender
The Event control that processes the event.
StepParams
The
ManualTestingGetNextStepEventParams
object provides information about the step's data that the testing engine retrieves from the Manual Tests project item.Remarks
For information on how to create an event handler for this and other TestComplete events, see Handling Events.
See Also
Manual Testing
OnBeforeStep Event
Handling Events
Event Control