(sendMessage, getXpaths)
| 5 | |
| 6 | export class InputEventTracker { |
| 7 | constructor(sendMessage, getXpaths) { |
| 8 | this.sendMessage = sendMessage; |
| 9 | this.getXpaths = getXpaths; |
| 10 | this.dropdownDetector = null; // Reactive dropdown detector |
| 11 | this.clickToEditDetector = null; // Click-to-edit pattern detector |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Set the dropdown detector for recording input interactions |
nothing calls this directly
no outgoing calls
no test coverage detected