Continue Statement Begins the next iteration of a for, for each, or while statement without completing the current iteration.
Critical Statement Guarantees that no other thread executes until a specified statement or indented block of code has executed and passed control
to the next statement at the level of the critical statement.
goto Statement Bypasses the usual flow of control and passes control to the statement prefixed by a specified label.
if Statement Executes particular statements depending on the value of a condition.
Multitag Statement In a window declaration, defines one or more tags that the Agent uses internally to uniquely identify the object at runtime.
Parallel Statement Each of the statements within the parallel block creates a separate thread and these threads are executed in parallel until
the end of the block.
Parent Statement In a window declaration, specifies the parent window of the window being declared.
Raise Statement Generates an exception and either transfers control to an exception handler or halts the script.
Recording Statement Specifies a block of recorded 4Test statements in a script.
Rendezvous Statement Blocks execution of the calling thread until all threads that were spawned by the calling thread have completed.
Reraise Statement Raises an exception again and passes control to the next exception handler.
Return Statement Returns control from a function to its calling function or from a child thread to its parent thread.
Select Statement Executes statements associated with a particular case from a group of cases.
Setting Statement Define class-specific use of multiple tags and other features.
spawn Statement Begins execution of the specified statement in a new thread.
switch Statement Executes a particular statement depending on the value of an expression.
Tag Statement In a window declaration, defines one or more tags that the Agent uses internally to uniquely identify the object at runtime.
use Statement Causes a specified file or files to be included in the compilation of a test case as though the contents of the file(s) were
part of the test case file.
while Statement Executes a statement zero or more times under control of a test condition.
with Statement Use to nest statements that reference the same window or record data type object.
withoptions Statement Opens a block of code in which agent options can be set for the duration of the block.