测试积点老人 发表于 2021-7-13 13:48:00

airtest使用自定义手势报错

from airtest.core.api import *
from airtest.core.android.minitouch import *
from airtest.core.android.base_touch import *
def switch():
    init_device()
    connect_device("Android:///b5978261?cap_method=javacap&touch_method=adb")
    a_event = ), SleepEvent(2), UpEvent(0)]
    device().minitouch.perform(a_event)

def get_info():
    os.system('adbshell getprop ro.product.model')# 手机型号
    os.system('adbshell wm size')# 分辨率
    os.system('adbshell getprop ro.build.version.release')# 版本

if __name__ == '__main__':
    get_info()
    switch()

qqq911 发表于 2021-7-14 10:30:30

用最新版本试试

bellas 发表于 2021-7-14 10:49:35

参考下这个链接https://blog.csdn.net/weixin_43966315/article/details/95773978

海海豚 发表于 2021-7-14 13:44:34

超时了

郭小贱 发表于 2021-7-14 15:07:52

airtest到是听过,不过没实际操作使用过,学习下。

litingting0214 发表于 2021-7-14 16:46:59

https://blog.csdn.net/weixin_43966315/article/details/95773978 参考下
页: [1]
查看完整版本: airtest使用自定义手势报错