export interface DappeteerElementHandle { $$(selector: string): Promise; evaluate(fn: (e: Element) => void | Promise): Promise; type(value: string): Promise; click(): Promise; hover(): Promise; getSource(): Source; }