playwright-fluent
Version:
Fluent API around playwright
4 lines (3 loc) • 328 B
TypeScript
import { SelectOptions } from '../select-options-in-handle';
import { ElementHandle, Frame, Page } from 'playwright';
export declare function selectOptionsByValueInHandle(selector: ElementHandle<Element> | undefined | null, name: string, values: string[], page: Page | Frame | undefined, options: SelectOptions): Promise<void>;