adb获取包名和界面名

adb获取包名和界面名

  • mac
    • adb shell dumpsys window windows | grep mFocusedApp
  • windows
    • adb shell dumpsys window windows | findstr mFocusedApp

这个是在当前手机打开哪个界面获取的就是哪个界面的包名与界面

注意第一次连接时会有提示,需要连接两次才可以

C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
adb server version (31) doesn't match this client (41); killing...
* daemon started successfully
adb.exe: device offline


C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
  mFocusedApp=AppWindowToken{25d14d77 token=Token{27267376 ActivityRecord{1ee68611 u0 com.android.launcher3/.Launcher t1}}}

C:\Users\i5ba0>

当我们打开设置时,包名与界面名变成了com.android.settings/.Settings t2

C:\Users\i5ba0>adb shell dumpsys window windows | findstr mFocusedApp
  mFocusedApp=AppWindowToken{3eede788 token=Token{3525d72b ActivityRecord{28fd037a u0 com.android.settings/.Settings t2}}}

C:\Users\i5ba0>
相关推荐
十二测试录5 小时前
【自动化测试】—— Appium使用保姆教程
android·经验分享·测试工具·程序人生·adb·appium·自动化
宏基骑士19 小时前
mac 电脑上安装adb命令
macos·adb
Deutsch.1 天前
MySQL——主从同步
mysql·adb
m0_748246612 天前
Ubuntu22部署MySQL5.7详细教程
android·adb
m0_748254093 天前
Linux下MySQL的简单使用
linux·mysql·adb
m0_748236113 天前
Mac 上如何安装Mysql? 如何配置 Mysql?以及如何开启并使用MySQL
mysql·macos·adb
小吃饱了4 天前
lvm快照备份
adb
limingade4 天前
从零搭建一套远程手机的桌面操控和文件传输的小工具
android·adb·智能手机·信息与通信·android runtime
jingshaoqi_ccc4 天前
Mac下安装ADB环境的三种方式
macos·adb