()
| 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) { |
no outgoing calls
no test coverage detected