Interrupt Operations
Last updated
Last updated
Description: This keyword or action instructs Avo Assure Client to pause the test execution until the user interacts with the execution flow.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
Pause | NA | NA | NA |
Find the snippet of the keyword below:
Description: This keyword or action instructs Avo Assure Client to wait for specified seconds before proceeding to the next step.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
wait | <time in seconds> | {Variable} |
|
Find the snippet of the keyword below:
Description: This keyword or action instructs Avo Assure Client to stop executing at various levels depending on the user input.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
Stop | N/A or Scenario Testcase Module | NA | NA |
Note:
The inputs are case insensitive but will accept only the following
input values:
No value (empty input field)
“Module”
“Scenario”
“Testcase”
The implementation of this keyword (based on each input) is
performed as follows:
<empty> or Scenario – Stops the execution at the scenario level. That is, it stops the execution of the scenario in which the stop keyword with this input value is encountered.
Module – Stops the execution at the module level. That is, it stops the execution of the module in which the stop keyword with this input value is encountered. (Useful in batch/end-to-end executions)
Testcase – Stops the execution at the testcase level. That is, it stops the execution of the test case in which the stop keyword with this input value is encountered.
Find the snippet of the keyword below: