51Testing软件测试论坛
标题:
关于 appium move_to 方法坐标的使用问题
[打印本页]
作者:
测试积点老人
时间:
2020-9-24 11:25
标题:
关于 appium move_to 方法坐标的使用问题
①问题的引入:
看到一篇文章,内容提到: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()
复制代码
打开指针位置,发现移动的位置是绝对坐标。
请教大家,在java语言中的moveTo方法使用的是相对坐标吗?
作者:
jeknight
时间:
2020-9-24 15:53
文章的说法是对的
你在模拟器或者手机打开:设置->开发人员选项->指针位置,重新执行这个语句,观察指针的移动方式
如果是偏移量,手机屏幕应该向右下滑动600个像素
如果是绝对坐标,应该向上移动200个像素
作者:
海海豚
时间:
2020-9-25 09:14
https://blog.csdn.net/qq_3004418 ... tionNum=6&fps=1
看下这个
作者:
qqq911
时间:
2020-9-25 10:20
可以用代码实际验证一下
作者:
jingzizx
时间:
2020-9-25 13:06
代码可以直接试试
作者:
郭小贱
时间:
2020-9-25 13:14
在Java中,下面这段运行的是相对位置,即起点(300, 300),终点(600, 600):
io.appium.java_client.TouchAction touchAction = new io.appium.java_client.TouchAction(driver);
touchAction.press(300, 300).moveTo(300, 300).release().perform();
复制代码
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2