playwright-fluent
Version:
Fluent API around playwright
7 lines (6 loc) • 563 B
TypeScript
import { SelectorFluent } from '../../selector-api';
import { WaitUntilOptions } from '../../utils';
import { AssertOptions } from '../../fluent-api';
import { Frame, Page } from 'playwright';
export declare function hasValue(selector: string | SelectorFluent, expectedValue: string, page: Page | Frame | undefined, options?: Partial<WaitUntilOptions>): Promise<boolean>;
export declare function expectThatSelectorHasValue(selector: string | SelectorFluent, expectedValue: string, page: Page | Frame | undefined, options?: Partial<AssertOptions>): Promise<void>;