create-locator
Version:
Creates HTML element locators for tests 📌
9 lines (8 loc) • 456 B
TypeScript
import type { AppLocatorKit, CreateLocatorOptions } from './types';
/**
* Creates locator function by locator options.
*/
export declare const createSimpleLocator: ({ attributesOptions, isProduction, }: CreateLocatorOptions) => AppLocatorKit;
export { anyLocator, createLocator, createRootLocator, getLocatorParameters, removeMarkFromProperties, setGlobalProductionMode, } from './oldApi.js';
export type * from './oldApi';
export type * from './types';