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?
Asked
Active
Viewed 1,881 times
1 Answers
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