@wix-pilot/core
Version:
A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)
9 lines (8 loc) • 365 B
TypeScript
import { SnapshotManager } from "./SnapshotManager";
import { PromptHandler, ScreenCapturerResult } from "../../types";
export declare class ScreenCapturer {
private snapshotManager;
private promptHandler;
constructor(snapshotManager: SnapshotManager, promptHandler: PromptHandler);
capture(useHighlights: boolean): Promise<ScreenCapturerResult>;
}