Version: Next
Dialog
Dialog objects are dispatched by page via the page.on("dialog") event.
An example of using Dialog class:
- Sync
- Async
note
Dialogs are dismissed automatically, unless there is a page.on("dialog") listener. When listener is present, it must either dialog.accept(**kwargs) or dialog.dismiss() the dialog - otherwise the page will freeze waiting for the dialog, and actions like click will never finish.
dialog.accept(**kwargs)#
prompt_text<str> A text to enter in prompt. Does not cause any effects if the dialog'stypeis not prompt. Optional.
Returns when the dialog has been accepted.
dialog.default_value#
- returns: <str>
If dialog is prompt, returns default prompt value. Otherwise, returns empty string.
dialog.dismiss()#
Returns when the dialog has been dismissed.
dialog.message#
- returns: <str>
A message displayed in the dialog.
dialog.type#
- returns: <str>
Returns dialog's type, can be one of alert, beforeunload, confirm or prompt.