@openfin/automation-helpers
Version:
Helper methods for automation testing in the OpenFin ecosystem
14 lines (13 loc) • 498 B
TypeScript
import type OpenFin from "@openfin/core";
/**
* The window locator identityString value types.
*/
export type WindowLocatorIdentityStringValueTypes = [string | RegExp, string | RegExp];
/**
* The window locator identity value types.
*/
export type WindowLocatorIdentityValueTypes = OpenFin.Identity;
/**
* The window locator value types.
*/
export type WindowLocatorValueTypes = string | RegExp | (string | RegExp)[] | WindowLocatorIdentityStringValueTypes | WindowLocatorIdentityValueTypes;