写手机自动化测试脚本关于APP九宫格滑动解锁方面采用了appium API 之 TouchAction 操作。
先是用uiautomatorviewer.bat查询APP元素坐标:
手工计算九宫格每个点中心的坐标及偏移的相对位移:
实现代码如下:(相对位移无负数不会报错,有负数时会报错)
TouchAction(self.driver).press(x=300,y=750).wait(1000) \
.move_to(x=576,y=0).wait(100) \
.move_to(x=-576,y=384).wait(100) \
.move_to(x=576,y=0).wait(100).release().perform()
time.sleep(5)
密码是一个Z型输入,相对位移有负数时老是报错,经多方查找原因后在release()后面加了一个wait,代码得以跑通。
修改后代码如下:
TouchAction(self.driver).press(x=300,y=750).wait(1000) \
.move_to(x=576,y=0).wait(100) \
.move_to(x=-576,y=384).wait(100) \
.move_to(x=576,y=0).wait(100).release().wait(100).perform()
time.sleep(5)
原文地址:https://www.cnblogs.com/winjou/p/10039942.html
时间: 2024-10-11 22:01:20