You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// get the messageconstmessage=awaitnotification.getMessage();// get the type (error/warning/info)consttype=awaitnotification.getType();// get the source as string, if shownconstsource=awaitnotificationgetSource();// find if there is an active progress barconsthasProgress=awaitnotification.hasProgress();
Take Action
// dismiss the notificationawaitnotification.dismiss();// get available actions (buttons)constactions=awaitnotification.getActions();// get an action's title (text)consttitle=actions[0].getTitle();// take action (i.e. click a button with title)awaitnotification.takeAction("Install All");