+ 2
Double Tap on Android ADB
I was looking for reproducing douple tap on an android emulator via adb, but I've found nothing. I tried this (using python): for i in range(2): os.system("adb shell input tap x y") but It doesn't work because It's too slow giving the input: when the first command is finished, It gives the second one, but the emulator takes them as single taps. I also had a change with Thread and It's worked, but in a limited test file only , such as: def click(): os.system("adb shell input tap x y") Thread(target=click).start() click() When I put this script in my complete (and tardy) code, It takes his time so... I doesn't work propely... Any suggestions? Does exist a built-in double tap command in adb?
2 Answers
+ 2
I'll try to ask on stackoverflow because nothing fits propely my question.
Thanks any way :)))
0
Giordano Fratti
Hello
I have the same problem
Did you found a sollution ?