Any idea how to do double tap using Python?
This works on iOS10.3 emulator but I can't make it work on real device iPhone 6 with iOS 10.3:
self.driver.execute_script("mobile: doubleTap", {"x": end_x, "y": end_y})
for iOS9 I am using something like this:
action.tap(element=None, x=end_x, y=end_y, count=2).perform()
and it works on iPad with iOS9.3 but doesn't work on iPhone emulator with iOS9.3.
Can anyone help me with this? 