0

I have found the same for the android using adb commands, such as: adb shell input tap 100 500, It will tap on the coordinates(100,500) on android device. Is it possible to do the same for IOS device, How?

1 Answers1

0

Using appium you can use the TouchAction from the client library as follows :

TouchAction tapCoordinates = new TouchAction(driver); //where driver is AppiumDriver
tapCoordinates.tap(x,y).perform();
Naman
  • 27,789
  • 26
  • 218
  • 353