e2ed
Version:
E2E testing framework over Playwright
15 lines (14 loc) • 471 B
TypeScript
import type { AttributesOptions } from '../createLocator';
import type { Selector } from '../utils/selectors/Selector';
/**
* Options of `createSelectorFunction` function.
*/
export type CreateSelectorFunctionOptions = AttributesOptions;
/**
* Creates selector by locator and optional parameters.
*/
export type CreateSelector = (this: void, cssString: string) => Selector;
/**
* Selector type (which replaces the DOM element wrapper).
*/
export type { Selector };