0

I have tried TapAction, MultiTouch, but it is taking more time then 0.8 seconds. If any solution available, please respond

1 Answers1

0

Did you try by adding a for loop accordingly?

from appium.webdriver.common.touch_action import TouchAction
for i in range(1, 5):
    actions = TouchAction(driver)
    actions.tap(element)
    actions.perform()
Nithin Mohan
  • 372
  • 1
  • 9