(fn: () => R | Promise<R>)
| 111 | goto(url?: string): Promise<void> |
| 112 | waitForSelector(selector: string): Promise<Element> |
| 113 | evaluate<R>(fn: () => R | Promise<R>): Promise<R> |
| 114 | evaluate<Arg, R>(fn: (arg: Arg) => R | Promise<R>, arg: Arg): Promise<R> |
| 115 | exposeFunction(name: string, fn: (...args: any[]) => any): Promise<void> |
| 116 | $eval<R>(selector: string, fn: (node: Element) => R | Promise<R>): Promise<R> |
no outgoing calls