autojs
autojs copied to clipboard
微信运动点赞有时候会点到自己导致脚本停止
5次有4次是点到自己导致的脚本停止。
出现以下错误提示typeerror:cannot call method "text" of null (<微信运动点赞>#126)
可尝试125行
if (btn.parent()) {
改成
if (btn.parent() && btn.parent().textMatches(/\d+/).exists()) {