alert()
Accept or dismiss a alert matching a text.
Examples
Section titled “Examples”alert('Are you sure', async () => await accept())
alert('Are you sure', async () => await dismiss())
// If alert message is unknown, A RegExp which matches// the text can be used
alert(/^Close.*$/, async () => await accept())
// If alert message is completely unknown, A callback can// be passed directly, it will get the message, url etc// as arguments which can be used to make a decision.
alert(async ({message}) => { if(message === "Are you sure?") { await accept(); }})
// Note: Taiko's `alert` listener has to be setup before the alert// popup displays on the page. For example, if clicking on a button// shows the confirm popup, the Taiko script is
alert('Message', async () => await accept())await click('Show Alert')Parameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
message | unknown | |
callback | function | Action to perform. accept/dismiss. |
messageOrCallback | string | RegExp | function | Identify prompt based on this message, regex or callback. |
Returns
Section titled “Returns”This API does not return any values.