1 Star 0 Fork 16

nodelaysu/Auto.js_1

forked from ran_lra/Auto.js 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
查询控件.js 801 Bytes
一键复制 编辑 原始数据 按行查看 历史
luck_baby 提交于 2022-02-14 22:56 . bug fixed
let debugWidget = function( widget, flag ){
flag = flag != null ? flag : 0
if( widget ){
let prefix = ""
for (let idx = 0; idx < flag; idx++) {
prefix = prefix + " "
}
log( " " + prefix + flag + " " + widget.bounds() + " " + widget.id() + " " + widget.className() + " - " + widget.text() + " - " + widget.desc() + " - " + widget.checked() + " - " + widget.selected() + " - " + widget.clickable() + " - " + widget.visibleToUser() )
if(widget.childCount()){
log( prefix + " " + " \\" + widget.childCount() )
widget.children().forEach(child => {
debugWidget( child, flag+1 )
});
}
}
}
debugWidget( classNameStartsWith("android").findOne(1000) )
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/nodelaysu/auto.js_1.git
git@gitee.com:nodelaysu/auto.js_1.git
nodelaysu
auto.js_1
Auto.js_1
master

搜索帮助