2021-01-14 07:48:56 -08:00
|
|
|
|
2021-01-07 11:46:05 -08:00
|
|
|
# class: Dialog
|
|
|
|
|
|
|
|
[Dialog] objects are dispatched by page via the [`event: Page.dialog`] event.
|
|
|
|
|
|
|
|
An example of using `Dialog` class:
|
|
|
|
|
|
|
|
```js
|
|
|
|
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'));
|
|
|
|
})();
|
|
|
|
```
|
|
|
|
|
2021-01-14 07:48:56 -08:00
|
|
|
```python async
|
|
|
|
import asyncio
|
|
|
|
from playwright.async_api import async_playwright
|
|
|
|
|
|
|
|
async def handle_dialog(dialog):
|
|
|
|
print(dialog.message)
|
|
|
|
await dialog.dismiss()
|
|
|
|
|
|
|
|
async def run(playwright):
|
|
|
|
chromium = playwright.chromium
|
|
|
|
browser = await chromium.launch()
|
|
|
|
page = await browser.new_page()
|
|
|
|
page.on("dialog", handle_dialog)
|
|
|
|
page.evaluate("alert('1')")
|
|
|
|
await browser.close()
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
async with async_playwright() as playwright:
|
|
|
|
await run(playwright)
|
|
|
|
asyncio.run(main())
|
|
|
|
```
|
|
|
|
|
|
|
|
```python sync
|
|
|
|
# FIXME
|
|
|
|
from playwright.sync_api import sync_playwright
|
|
|
|
|
|
|
|
def handle_dialog(dialog):
|
|
|
|
print(dialog.message)
|
|
|
|
await dialog.dismiss()
|
|
|
|
|
|
|
|
def run(playwright):
|
|
|
|
chromium = playwright.chromium
|
|
|
|
browser = chromium.launch()
|
|
|
|
page = browser.new_page()
|
|
|
|
page.on("dialog", handle_dialog)
|
|
|
|
page.evaluate("alert('1')")
|
|
|
|
browser.close()
|
|
|
|
|
|
|
|
with sync_playwright() as playwright:
|
|
|
|
run(playwright)
|
|
|
|
```
|
|
|
|
|
2021-01-07 11:46:05 -08:00
|
|
|
## async method: Dialog.accept
|
|
|
|
|
|
|
|
Returns when the dialog has been accepted.
|
|
|
|
|
|
|
|
### param: Dialog.accept.promptText
|
|
|
|
- `promptText` <[string]>
|
|
|
|
|
|
|
|
A text to enter in prompt. Does not cause any effects if the dialog's `type` is not prompt. Optional.
|
|
|
|
|
|
|
|
## method: Dialog.defaultValue
|
|
|
|
- returns: <[string]>
|
|
|
|
|
|
|
|
If dialog is prompt, returns default prompt value. Otherwise, returns empty string.
|
|
|
|
|
|
|
|
## async method: Dialog.dismiss
|
|
|
|
|
|
|
|
Returns when the dialog has been dismissed.
|
|
|
|
|
|
|
|
## method: Dialog.message
|
|
|
|
- returns: <[string]>
|
|
|
|
|
|
|
|
A message displayed in the dialog.
|
|
|
|
|
|
|
|
## method: Dialog.type
|
|
|
|
- returns: <[string]>
|
|
|
|
|
|
|
|
Returns dialog's type, can be one of `alert`, `beforeunload`, `confirm` or `prompt`.
|