赞
踩
第一章 APP自动化环境搭建(Mac版)
第二章 APP自动化环境搭建(Windows版)
第三章 adb命令
第四章 元素定位、元素操作
第五章 APP自动化测试框架搭建 Python+Appium+pytest-html
第六章 uiautomator2、web-editor基础操作
第七章 Airtest基础操作
第八章 ATX Server2多设备集群环境搭建
1、adb的全称为安卓调试桥 (Android Debug Bridge, adb),是⼀种可以⽤来操作⼿机设备或模拟器的命令⾏⼯具。它是 Android 开发/测试⼈员不可替代的强⼤⼯具,它存在于sdk/platform-tools⽬录下。
adb devices
adb shell getprop ro.build.version.release
adb install "<xxx.apk>"
--如果此apk手机中已经存在,⽆法安装;apk包路径直接将电脑里文件拖入cmd输入框中即可。
adb install -r "xxx.apk"
–覆盖安装,如果已存在安装,会覆盖原有应⽤
①Windows系统:
adb shell dumpsys window|findstr mCurrentFocus
②Mac/Linux系统:
adb shell dumpsys window|grep mCurrentFocus
adb uninstall <包名>
adb shell pm list packages
adb shell pm list packages -f <包名>
①adb push <本机路径> <⼿机路径> 从本地电脑推送信息到⼿机上
②adb pull <⼿机路径> <本机路径> 从⼿机中拉取信息到本地电脑上
adb shell am start <包名appPackage>/<活动名appActivity>
adb shell screencap /sdcard/screen.png
adb shell input text "test%s001" #%s代表空格
adb shell input tap <X坐标> <Y坐标>
adb shell input swipe <X坐标> <Y坐标> <X偏移坐标> <Y偏移坐标>
adb logcat
ctrl + c
adb shell top
随手点赞一次,运气增加一份。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。