我对Appium中不推荐使用的tap有问题,因为eclipse说不推荐使用带有坐标的“敲击”。我用 :

TouchAction touchAction=new TouchAction(driver);
TouchAction perform = touchAction.tap(524, 1735).perform();


点按位置坐标,找不到新的“点击坐标”的新功能

最佳答案

请检查最新的TouchAction类:
https://appium.github.io/java-client/io/appium/java_client/TouchAction.html

对于点击坐标,您可以执行以下操作:

new TouchAction(localdriver).tap(point(xPoint, yPoint)).perform();

08-04 23:03