public interface ScriptStatusListener extends Capability
This interface declares that the client needs to be notified of the test script life cycle phases, such as when the test script is started, finished, paused and resumed.
T-Plan Robot Enterprise, (C) 2009-2025 T-Plan Limited. All rights reserved.
Modifier and Type | Method and Description |
---|---|
void |
scriptFinished(ScriptingContext context)
Called when the script using this client finishes.
|
void |
scriptPaused(ScriptingContext context)
Called when the script using this client is paused.
|
void |
scriptResumed(ScriptingContext context)
Called when the script using this client is resumed.
|
void |
scriptStarted(ScriptingContext context)
Called when the script using this client is started.
|
void scriptStarted(ScriptingContext context)
context
- the execution context.void scriptFinished(ScriptingContext context)
context
- the execution context.void scriptPaused(ScriptingContext context)
context
- the execution context.void scriptResumed(ScriptingContext context)
context
- the execution context.