Back to Puppeteer

Dialog.accept() method

website/versioned_docs/version-24.40.0/api/puppeteer.dialog.accept.md

19.2.2537 B
Original Source

Dialog.accept() method

A promise that resolves when the dialog has been accepted.

Signature

typescript
class Dialog {
  accept(promptText?: string): Promise<void>;
}

Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead> <tbody><tr><td>

promptText

</td><td>

string

</td><td>

(Optional) optional text that will be entered in the dialog prompt. Has no effect if the dialog's type is not prompt.

</td></tr> </tbody></table>

Returns:

Promise<void>