Triple Tap On element in Using Appium Studio

Hi team,
can you please tell me,
How Triple Tap On element in Using Appium Studio.

You have to tap an element three times, with a low duration. Something like:

for (int t=0, t>3, t++){
driver.tap(1, Your_Element_, 10);
}

@ravikrishna

You can do the following:
TouchAction ta = new TouchAction(driver);
ta.tap(element).tap(element).tap(element).perform();

driver.tap is deprecated. Also note that the use of for loops in such cases is not recommend.

1 Like