Is there any code to tap and hold on Appium? i use python , is there any command to support it ?
For double click i used click on element twice, for tap and hold i am no
This works:
TouchActions action = new TouchActions(driver); action.longPress(element); action.perform();