// 先usb链接手机,设置手机tcp链接端口为5555 adb tcpip 5555 // 断开usb,采用tcpip链接手机 adb connect 10.33.70.165:5555 // 断开tcpip链接 adb disconnect 10.33.70.165:5555
// 获取当前界面元素 adb shell dumpsys activity top // 获取App入口 adb shell dumpsys activity activities // 启动app adb shell am start -W -n com.xueqiu.android/.view.WelcomeActivityAlias -S // 获取当前界面元素 adb shell dumpsys activity top