Accept or dismiss the currently open JavaScript alert/confirm/prompt dialog.
(accept: boolean, promptText?: string)
| 142 | cdp?(method: string, params?: Record<string, unknown>): Promise<unknown>; |
| 143 | /** Accept or dismiss the currently open JavaScript alert/confirm/prompt dialog. */ |
| 144 | handleJavaScriptDialog?(accept: boolean, promptText?: string): Promise<void>; |
| 145 | /** List cross-origin iframe targets in snapshot order. */ |
| 146 | frames?(): Promise<Array<{ index: number; frameId: string; url: string; name: string }>>; |
| 147 | /** Evaluate JavaScript inside a cross-origin iframe identified by its frame index. */ |
no outgoing calls
no test coverage detected