MCPcopy Create free account
hub / github.com/InverseUI/InverseUI-Recorder / init

Method init

modules/action/index.js:34–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32 }
33
34 init() {
35 if (this.initialized) return;
36
37 // Initialize all event trackers
38 Object.values(this.trackers).forEach(tracker => {
39 if (tracker.init) {
40 console.log('🔧 Initializing tracker:', tracker.constructor.name);
41 tracker.init();
42 }
43 });
44
45 this.initialized = true;
46 console.log('✅ InverseUI: All behavior trackers initialized');
47 }
48
49 // Expose assertion methods for direct access
50 assertElement(xpath, assertion) {

Callers 1

initializeActionTrackingFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected