Definition and Usage
Display a popup message that requires user interaction to continue. This action creates a dialog box with a specified title and content that pauses the workflow until the user acknowledges it by clicking a button.
Parameter Values
Input parameters
Parameter | Description | Possible Values | Required | Options / Notes |
Popup title | Enter the title of the popup dialog | Any text | Yes | The title appears at the top of the popup window |
Content to display | Enter the content to be shown in the popup | Any text | Yes | The main message that will be displayed to the user |
Error handling
Parameter Name | Description |
Throw error & stop | When an error occurs, the action will trigger an error and stop the execution of the entire app. |
Retry command | If an error occurs, the action will retry the command in an attempt to resolve the issue and continue the process. |
Ignore error & continue | When an error occurs, the action will be ignored, and the workflow will continue without interruption. |
Variables produced
This action doesn't produce any variables.
Using Variables in Conditions
You can use variables in both the popup title and content fields, as indicated by the {x} icon next to each field. This allows you to create dynamic popup messages that display information from previously defined variables, such as showing calculation results or data retrieved from earlier steps in the workflow.
Notes
The workflow execution will pause at this action until the user clicks a button to dismiss the popup.
This action is useful for providing information to users during workflow execution or requesting them to take some action before the process continues.
The popup will appear on the user's screen regardless of what application is currently in focus.
For unattended automation scenarios, avoid using this action as it requires human interaction.