playwright-fluent
Version:
Fluent API around playwright
4 lines (3 loc) • 319 B
TypeScript
import { Page, ElementHandle, Frame } from 'playwright';
import { WaitUntilOptions } from '../../../utils';
export declare function getHandleOf(selector: string, pageProviderOrPageInstance: (() => Page | Frame | undefined) | Page | Frame | undefined, options: WaitUntilOptions): Promise<ElementHandle<Element> | null>;