UNPKG

playwright-fluent

Version:
8 lines (7 loc) 286 B
import { ElementHandle } from 'playwright'; export interface SelectOptionInfo { value: string; label: string; selected: boolean; } export declare function getAllOptionsOfHandle(selector: ElementHandle<Element> | null | undefined, name: string): Promise<SelectOptionInfo[]>;