10

Is it possible to enable the "show_touches" options on android from appium? Or via adb?

I have a appium test-script, which misbehaves. I have no Idea why, and I want to see where exactly it clicks.

Nathan
  • 7,099
  • 14
  • 61
  • 125

1 Answers1

13
adb shell settings put system show_touches 1
EpicPandaForce
  • 79,669
  • 27
  • 256
  • 428
Alex P.
  • 30,437
  • 17
  • 118
  • 169
  • 4
    if this was "obvious" you wouldn't need to answer it on stackoverflow – canhazbits Apr 21 '19 at 02:41
  • 1
    you can also use: `adb shell settings put system pointer_location 1` in order to enable the fancier touch & swipe monitor that shows coordinates, pressure and more – d4vidi May 20 '20 at 14:28