Track all the interactions agent support.
Track button presses.
Track List Item clicks and focus changes for android.widget.AbsListView
and its subclasses. (android only)
Do not track any user interactions.
Track table cell selection. (iOS only)
Track text field selection.
Track text view selection. (iOS only)
Combines multiple modes together. This does not mutate the object.
Other modes to combine with this mode.
The combination of this mode with the modes passed in argument.
Excludes modes together from this mode. This does not mutate the object.
Other modes to exclude from this mode.
The current set of modes minus the modes passed in argument.
Generated using TypeDoc
Defines what types of user interaction events should be captured.
Modes can be combined at will with the use of the with and without methods.
Instrumentation.start({ // ...your other parameters here... // Only enable "ButtonPressed" and "EditTextSelected" interaction modes, and disable the rest. interactionCaptureMode: InteractionCaptureMode.None.with( InteractionCaptureMode.ButtonPressed, InteractionCaptureMode.EditTextSelected ) })
AgentConfiguration.interactionCaptureMode