playwright-fluent
Version:
Fluent API around playwright
5 lines (4 loc) • 305 B
TypeScript
import { WaitUntilOptions } from '../../../utils';
import { SelectOptionInfo } from '../../handle-actions';
import { Frame, Page } from 'playwright';
export declare function getAllOptionsOfSelector(selector: string, page: Page | Frame | undefined, options: WaitUntilOptions): Promise<SelectOptionInfo[]>;