mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
5.3 KiB
5.3 KiB
id | title |
---|---|
class-dialog | Dialog |
Dialog objects are dispatched by page via the page.on('dialog') event.
An example of using Dialog
class:
const { chromium } = require('playwright'); // Or 'firefox' or 'webkit'.
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
page.on('dialog', async dialog => {
console.log(dialog.message());
await dialog.dismiss();
await browser.close();
});
page.evaluate(() => alert('1'));
})();
dialog.accept([promptText])
promptText
<string> A text to enter in prompt. Does not cause any effects if the dialog'stype
is not prompt. Optional.- returns: <Promise>
Returns 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>
Returns when the dialog has been dismissed.
dialog.message()
- returns: <string>
A message displayed in the dialog.
dialog.type()
- returns: <string>
Returns dialog's type, can be one of alert
, beforeunload
, confirm
or prompt
.