playwright-fluent
Version:
Fluent API around playwright
5 lines (4 loc) • 338 B
TypeScript
import { SelectorFluent } from '../../../selector-api';
import { SwitchToIframeOptions } from '../../handle-actions';
import { Frame, Page } from 'playwright';
export declare function switchFromSelectorObjectToIframe(selector: SelectorFluent, pageOrFrame: Page | Frame | null | undefined, options: SwitchToIframeOptions): Promise<Frame>;