本帖最后由 152324093 于 2021-8-29 23:20 编辑
截图 漏掉了 下面的
执行 直接看代码吧
- local ret = nodeLib.findOne({class="android.widget.ImageView",index="0",level="9"},true)
- if ret ~= nil then
- print(ret)
- end
- function 寻找节点(jdcs)
- local ret = nodeLib.findOne(jdcs[2],jdcs[3],jdcs[4],jdcs[5],jdcs[6],true)
- if ret ~= nil then
- print(jdcs[1] .. '----节点返回----' ..ret)
- return true
- end
- end
- 关闭广告1 = {"关闭广告1",class="android.widget.ImageView",index="0",level="9"}
- if 寻找节点(关闭广告1) then
- nodeLib.click(ret)
- end
复制代码
我想这种方式传 参数 但是 函数本身就是 数组 这样传过去 不正确
应为每次 参数的数量 也不一定 经常变化
应为我想留着参数1 保留自己 做备注用
|