如何点击 UI Automation 中只有坐标的按钮?

How to tap a button in UI Automation which has only coordinates?

我只有按钮的坐标:

UIAButton:rect:{{253,27},{60,30}}

我已将其存储在一个数组中。我想特别点击这个按钮而不给出它的坐标,以便它对其余按钮通用。

谢谢。

我会做类似 this question 中所示的事情。

UIATarget.localTarget().frontMostApp().tapWithOptions({tapCount: 1, tapOffset: {x: 0, y: 0});

您可以将 tapOffset 中的零替换为您想要的 x 和 y 值。