①问题的引入: 看到一篇文章,内容提到:moveTo坐标是相对当前位置的偏移量。原文如下: moveTo coordinates are relative to the current position. For example, dragging from 100,100 to 200,200 can be achieved by: .press(100,100) // Start at 100,00 .moveTo(100,100) // Increase X & Y by 100 each, ending up at 200,200 ②但是我在使用python+appium时,发现move_to使用的是绝对坐标。 TouchAction(self.driver).press(x=600,y=800).move_to(x=600,y=600).perform() 打开指针位置,发现移动的位置是绝对坐标。