class: Dialog

[Dialog] 对象通过 ‘dialog’ 事件的页面分发。

一个使用 Dialog 类的例子:

  1. const puppeteer = require('puppeteer');
  2. puppeteer.launch().then(async browser => {
  3. const page = await browser.newPage();
  4. page.on('dialog', async dialog => {
  5. console.log(dialog.message());
  6. await dialog.dismiss();
  7. await browser.close();
  8. });
  9. page.evaluate(() => alert('1'));
  10. });

dialog.accept([promptText])

  • promptText <[string]> 提示中输入的文本。 如果对话框的类型不提示,不会产生任何影响。
  • returns: <[Promise]> Promise which resolves when the dialog has been accepted.

dialog.defaultValue()

  • returns: <[string]> 如果对话框出现提示,则返回默认提示值。 否则,返回空字符串。

dialog.dismiss()

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

dialog.message()

  • returns: <[string]> 显示在对话框中的信息。

dialog.type()

  • returns: <[string]> 对话框类型,可以是 alertbeforeunloadconfirmprompt 中的一个。