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 the manual test is about to be resumed.
Declaration
OnResume(Sender, StepID)
Parameters
Sender | [in] | Required | Variant | |
StepID | [in] | Required | String |
Description
The OnResume
event occurs in the following cases:
- When you select the Resume command from the context menu of the suspended manual test in the Project Explorer panel.
- When the
ManualTesting.Resume
method is called from a script.
You can use this event to perform specific actions when the manual test is about to be resumed.
Parameters
The event has the following parameters:
Sender
The Event control that processes the event.
StepID
Specifies the identifier of the manual test step from which the test will be resumed. Step identifiers are shown in the ID field of the Manual Testing editor.
Remarks
For information on how to create an event handler for this and other TestComplete events, see Handling Events.
See Also
Manual Testing
Resume Method
OnSuspend Event
Handling Events
Event Control