* Set the automatic popup response to Cancel/Dismiss. * This must be set before a popup is triggered. * * ```js * I.amCancellingPopups(); * I.click('#triggerPopup'); * I.cancelPopup(); * ```
()
| 528 | * ``` |
| 529 | */ |
| 530 | amCancellingPopups() { |
| 531 | popupStore.actionType = 'cancel' |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Dismisses the active JavaScript popup, as created by window.alert|window.confirm|window.prompt. |
no outgoing calls
no test coverage detected