@presidio-dev/factifai-agent
Version:
An AI powered browser automation testing agent powered by LLMs.
21 lines • 841 B
TypeScript
import { GraphStateType } from '../../graph/graph';
/**
* Node that generates a Playwright script from successful test execution data
*/
export declare const generatePlaywrightScriptNode: ({ sessionId, isComplete, testEndTime, testDuration, testSteps, scriptFormat, }: GraphStateType) => Promise<{
playwrightCoordinateScriptPath?: undefined;
playwrightSelectorScriptPath?: undefined;
playwrightActionsPath?: undefined;
lastError?: undefined;
} | {
playwrightCoordinateScriptPath: string;
playwrightSelectorScriptPath: string;
playwrightActionsPath: string;
lastError?: undefined;
} | {
lastError: string;
playwrightCoordinateScriptPath?: undefined;
playwrightSelectorScriptPath?: undefined;
playwrightActionsPath?: undefined;
}>;
//# sourceMappingURL=generate-playwright-script-node.d.ts.map