美文网首页
Android adb 常用命令

Android adb 常用命令

作者: 圈圈猫 | 来源:发表于2020-01-08 16:39 被阅读0次

    开发中经常会用到的命令,特别是自动化测试链接adb的时候

    1、安装app(path为apk包的)

    adb install path
    

    2、删除app

    adb uninstall 包名
    

    3、触摸时间(x, y为触摸点的坐标位置)

    adb shell input tap x y
    

    4、滑动事件(x1, y1为按下时候的点位置, x2, y2为滑动到的位置点)

    adb shell input swipe x1 y1 x2 y2
    

    5、长按事件(ms为按下的时间长度)

    adb shell input  swipe x1 y1 x2 y2 ms
    

    6、清除数据

    adb shell pm clear 包名
    

    7、连接adb

    adb wait-for-device
    adb remount
    adb connect 192.168.1.3
    

    8、输入日志

    //清除日志
    adb logcat -c
    adb locat -v time >log.txt
    

    9、导出android日志

    adb pull data/log/android_log log
    

    10、闪退日志

    adb pull data/system.dropbox  dropbox
    

    11、启动页面

    adb shell am start -n 包名/页面路径
    

    12、取消权限或者授权

    adb shell pm revoke|grant 包名 权限名称
    

    13、截图并且导出

    adb shell screencap -p /sdcard/test.png
    adb pull /sdcard/test.png d:/temp/test.png
    

    14、查看连接的手机

    adb devices
    

    参考文章:

    https://www.jianshu.com/p/ca06a4d1447b

    相关文章

      网友评论

          本文标题:Android adb 常用命令

          本文链接:https://www.haomeiwen.com/subject/umltottx.html