ai-debug-local-mcp
Version:
🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh
40 lines • 1.09 kB
TypeScript
/**
* Flutter Click Handler
* Properly handles coordinate-based clicks on Flutter CanvasKit applications
*/
import { Page } from 'playwright';
export interface ClickOptions {
x: number;
y: number;
retries?: number;
verbose?: boolean;
}
export declare class FlutterClickHandler {
/**
* Perform a reliable click on Flutter CanvasKit rendered UI
*/
static performClick(page: Page, options: ClickOptions): Promise<boolean>;
/**
* Click on a Flutter element using its semantic information
*/
static clickElement(page: Page, element: {
bounds: {
x: number;
y: number;
width: number;
height: number;
};
}, options?: {
verbose?: boolean;
}): Promise<boolean>;
/**
* Verify if a click was successful by checking for changes
*/
static verifyClickSuccess(page: Page, beforeState: {
url: string;
title: string;
}, options?: {
timeout?: number;
}): Promise<boolean>;
}
//# sourceMappingURL=flutter-click-handler.d.ts.map