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
Yes, you can use TouchAction class to longPress any element. Try this:
TouchAction action = new TouchAction(); action.longPress(webElement).release().perform();