运行环境:LuaBox/积木编程(软件自行百度下载)
运行系统:安卓 5 以上,无需 ROOT
脚本功能:自动打开支付宝>>打开我的界面>>领取积分
脚本语言:Lua
脚本原理:
仍然是使用安卓系统的无障碍权限查找界面控件的 text 和 desc 属性
使用方法:复制代码 – 打开软件 – 新建脚本 – 粘贴代码 – 运行
脚本源码:
[Lua] 纯文本查看 复制代码pkgname = app.getPackageName("支付宝")
app.runApp(pkgname)
mSleep(3000)
local text = "我的"
local my = widget.find({["id"]="com.alipay.android.phone.wealth.home:id/tab_description",["text"]= text})
if my ~= nil then
x,y,x1,y1 = widget.region(my)
if x ~= -1 then
toast(text)
event.tap(x,y)
mSleep(3000)
end
end
local text = "积分待领取"
local point = widget.find({["text"]=text,["rule"]=3})
if point ~= nil then
x1,y1,x2,y2 = widget.region(point)
if x1 ~= -1 then
toast(text)
event.tap(x1,y1)
mSleep(3000)
end
end
local text = "领积分"
local collect = widget.find({["text"]="领积分"})
if collect ~= nil then
x,y,x1,y1 = widget.region(collect)
if x ~= -1 then
toast(text)
event.tap(x,y)
mSleep(3000)
end
end
local text = "签到"
local check = widget.find({["text"]="签到",["path"]="/FrameLayout/LinearLayout/FrameLayout/FrameLayout/RelativeLayout/RelativeLayout/RelativeLayout/RelativeLayout/FrameLayout/WebView/ba/WebView/View/View/View/View/View/View/View"})
if check ~= nil then
x,y,x1,y1 = widget.region(check)
if x ~= -1 then
toast(text)
event.tap(x,y)
mSleep(3000)
end
end
io.open()
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!603313839@qq.com
2. 请您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容资源
3. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
4. 不保证所提供下载的资源的准确性、安全性和完整性,源码仅供下载学习之用!
5. 不保证所有资源都完整可用,不排除存在BUG或残缺的可能,由于资源的特殊性,下载后不支持退款。
6. 站点所有资源仅供学习交流使用,切勿用于商业或者非法用途,与本站无关,一切后果请用户自负!