donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
11 lines • 443 B
TypeScript
import type { FlowMetadata } from '../main';
/**
* This exception is thrown if a call to `donobuPage.ai` (i.e. an autonomous flow)
* finishes to a state that is not {@link State.SUCCESS}.
*/
export declare class PageAiException extends Error {
readonly originalInstruction: string;
readonly metadata: FlowMetadata;
constructor(originalInstruction: string, metadata: FlowMetadata);
}
//# sourceMappingURL=PageAiException.d.ts.map