I am trying to double tap
an element in IOS Simulator using appium but unable to do so.
Methods tried:
action.tap(x=xx, y=yy, count=1).release().perform()
2 times in a row,but it seems there is a 2 second gap which in real world would not be a double tap
element.click
same problem as above
action.press(x=xx, y=yy).wait(500).release().perform().press(x=0, y=0).wait(500).perform()
no result
action.tap(x=xx, y=yy, count=2).release().perform()
no result.
Is there any thing else i can try or any other method which works on ios
.
Appium::TouchAction.new.tap(x: xx, y: yy, count: 2).perform
.tap dont need release, only press need it – Tuppencetap
2 times?on real device or simulator? i am on simulator and in logs it shows 2 seconds gap!!! – Hire