askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
14 lines (13 loc) • 608 B
TypeScript
import { AIElement } from './ai-element';
import { CustomElementJson } from '../model/custom-element-json';
import { AIElementArgs } from './ai-elements-args';
export declare class AIElementCollection {
private elements;
static AI_ELEMENT_FOLDER: string;
constructor(elements: AIElement[]);
static collectAIElements(workspaceId: string | undefined, aiElementArgs: AIElementArgs): Promise<AIElementCollection>;
getByName(name: string): CustomElementJson[];
getByNames(names: string[]): CustomElementJson[];
getNames(): string[];
private static CollectAiElementsFromLocation;
}