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
github-actions[bot] edited this page May 16, 2024
·
3 revisions
Only available if you have the custom dialog style enabled, use "window.dialogStyle": "custom" in the settings to do so.
Look up
constdialog=newModalDialog();
Get the contents
// get the message (the bold text)constmessage=awaitdialog.getMessage();// get the details (the not so bold text)constdetails=awaitdialog.getDetails();// get the button web elementsconstbuttons=awaitdialog.getButtons();
Push a button
// push button with a given titleawaitdialog.pushButton("Save All");