UNPKG

playwright-advanced-ml-healer

Version:

Advanced AI-powered self-healing selectors for Playwright with 19+ healing types, neural networks, machine learning models, and Global DOM Learning ML Model

30 lines 1.32 kB
/** * playwright-advanced-ml-healer * * Advanced AI-powered self-healing selectors for Playwright * featuring 17+ healing types, neural networks, and machine learning models. * * @version 2.0.0 * @license MIT */ export { PlaywrightCompatibleHealingPage } from './playwright-compatible-interface'; export { AdvancedMLHealing } from './advanced-ml-healing'; export { GlobalDOMLearningML } from './global-dom-learning-ml'; export type { AdvancedMLResult, HealingStats, HealingActionStats, FilePayload } from './types'; export declare const VERSION = "2.0.0"; export declare const HEALING_STRATEGIES_COUNT = 17; export declare const DEFAULT_TIMEOUT = 5000; export declare const DEFAULT_CACHE_TTL = 300; export { calculateStringSimilarity, calculateLevenshteinDistance } from './utils'; import { PlaywrightCompatibleHealingPage } from './playwright-compatible-interface'; import { AdvancedMLHealing } from './advanced-ml-healing'; import { GlobalDOMLearningML } from './global-dom-learning-ml'; declare const _default: { PlaywrightCompatibleHealingPage: typeof PlaywrightCompatibleHealingPage; AdvancedMLHealing: typeof AdvancedMLHealing; GlobalDOMLearningML: typeof GlobalDOMLearningML; VERSION: string; HEALING_STRATEGIES_COUNT: number; }; export default _default; //# sourceMappingURL=index.d.ts.map