class: Dialog

Dialog objects are dispatched by page via the ‘dialog’ event.

An example of using Dialog class:

  1. const { chromium } = require('playwright'); // Or 'firefox' or 'webkit'.
  2. (async () => {
  3. const browser = await chromium.launch();
  4. const page = await browser.newPage();
  5. page.on('dialog', async dialog => {
  6. console.log(dialog.message());
  7. await dialog.dismiss();
  8. await browser.close();
  9. });
  10. page.evaluate(() => alert('1'));
  11. })();

dialog.accept([promptText])

  • promptText <string> A text to enter in prompt. Does not cause any effects if the dialog’s type is not prompt.
  • returns: <Promise> Promise which resolves when the dialog has been accepted.

dialog.defaultValue()

  • returns: <string> If dialog is prompt, returns default prompt value. Otherwise, returns empty string.

dialog.dismiss()

  • returns: <Promise> Promise which resolves when the dialog has been dismissed.

dialog.message()

  • returns: <string> A message displayed in the dialog.

dialog.type()

  • returns: <string> Dialog’s type, can be one of alert, beforeunload, confirm or prompt.