playwright-fluent
Version:
Fluent API around playwright
5 lines (4 loc) • 329 B
TypeScript
import { SelectorFluent } from '../../../selector-api';
import { SelectOptions } from '../../handle-actions';
import { Frame, Page } from 'playwright';
export declare function selectOptionsByValueInSelectorObject(selector: SelectorFluent, values: string[], page: Page | Frame | undefined, options: SelectOptions): Promise<void>;