testplane
Version:
Tests framework based on mocha and wdio
11 lines (10 loc) • 386 B
TypeScript
declare enum Scopes {
BROWSER = "b",
ELEMENT = "e"
}
declare const wdioBrowserCommands: string[];
declare const wdioElementCommands: string[];
export declare const getBrowserCommands: () => typeof wdioBrowserCommands;
export declare const getElementCommands: () => typeof wdioElementCommands;
export declare const createScope: (elementScope: boolean) => `${Scopes}`;
export {};