Double Tap In Ios Simulator Not Working
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 i
Solution 1:
I call it in a similar way the first method you listed, its not as fast as double tap, but its less than one second delay
Appium::TouchAction.new.tap(x: xx, y: yy, count: 2).perform
.tap
dont need to use release
, only .press
need it
Post a Comment for "Double Tap In Ios Simulator Not Working"