get popup message
Description
Retrieve the messages of one or more recent confirmation, prompt, or alert popups.
Arguments
variable, variable2, variable3,…,variableN (not necessarily sequential)
(Optional) Names of one or more variables to receive the returned messages displayed in corresponding popups.
Valid contexts
This action may be used within the following project items: test modules and user-defined actions.
Notes
- Prior to using this built-in action, it is recommended that you become familiar with the different kinds of modal JavaScript popups and how to handle them properly.
- For Safari
- on iOS, refer to Handling JavaScript popups on Safari iOS for details.
- on macOS, refer to Handling JavaScript popups on Safari macOS for details.
- For Google Chrome on Android, refer to Handling JavaScript popups on Chrome Android for details.
- For Safari
- variable argument:
- For convenience, the argument headersvariable, variable0 and variable1are all used to reference the same item (that is, the message text of the most recently handled popup).
- Each variableargument is numbered in accordance with the order of handled popups in the current popup session, in reverse chronological order. Specifically,variablespecifies the most recently handled popup,variable2the second most recent, and so on.
- A single call to this action may be used to retrieve any or all of the handled popup messages of the current popup session. Specify as manyvariable arguments as there are messages you wish to retrieve, taking care to number them (variable2, variable5, etc.) in correspondence with the popups of interest. (See Example #2.)
- If the variables in argumentsvariable, variable2, variable3, etc.have not been declared, the action creates them as globals.
- This action supports the <ignore> modifier. If the string
<ignore>
is present as the value of the argument, or the argument contains an expression that evaluates to<ignore>
, the action is skipped during execution.
Applicable Built-In Settings
The following settings are applicable to this action: remove double quotes from cells, standard ASCII only.
Applicable Controls
This action is applicable to the following controls: none.
Example - Case 1: A single popup
Scenario: You are testing a shopping cart page with a button, Delete this item, for removing an item from your cart:
- Upon clicking the button, a confirmation popup appears with the message Do you want to delete this item?. Two buttons, OK and Cancel, are displayed.
- In the popup, the OK button is clicked.
- The test then retrieves the message of the confirmation popup.
Action Lines
Result
Example - Case 2: A sequence of multiple popups
Scenario: You are testing a shopping cart page with a button, Delete this item, for removing an item from your cart:
- Upon clicking the button, a confirmation popup appears with the message Do you want to delete this item?. Two buttons, OK and Cancel, are displayed.
- In the popup, the OK button is clicked.
- This triggers an alert popup with the message Item deleted, and a single OK button.
- The test clicks OK in the alert to dismiss it and proceed.
- The test then retrieves the following messages in three separate action lines:
- The message of the most recently handled popup (the alert popup).
- The message of the second most recently handled popup (the confirmation popup).
- The messages of both popups.
Action Lines
Result
Related information