(sendMessage, getXpaths)
| 5 | |
| 6 | export class ClickEventTracker { |
| 7 | constructor(sendMessage, getXpaths) { |
| 8 | this.sendMessage = sendMessage; |
| 9 | this.getXpaths = getXpaths; |
| 10 | this.dropdownDetector = null; |
| 11 | this.fileUploadDetector = null; |
| 12 | this.choiceDetector = null; |
| 13 | this.radioDetector = null; |
| 14 | this.clickToEditDetector = null; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Set the dropdown detector for reactive detection on clicks |
nothing calls this directly
no outgoing calls
no test coverage detected