Replies: 2 comments 1 reply
-
|
不一定是缺少某种条件,可能是系统的无障碍辅助服务没有通过GKD,因此没有进行自动化操作。 为了排查这个情况,你可以尝试进入到需要自动化的页面后,手动滑动/点击一下页面,并保持需要自动化点击的UI仍然在屏幕中,看一下是否还需要等待很久,或者是在你手动操作后,立即执行了自动化操作。 如果是后者的情况,那么就是系统原因导致的,这就和应用本身无关。 |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
选择器 @Button[text="立即下单"] < View - View > TextView[text="无需预约,时效以快递员揽收时为准"]没快查呗,而且你还加了延时 还有个原因就是被其他优先匹配的又不支持快查的规则阻塞了。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
写了一个自动点击微信小程序中按钮的规则,但是要等上个5,6秒才能点击,是我缺少了什么条件吗?请大佬解惑,谢谢!
快照:https://i.gkd.li/i/24279038
规则:
{
key: 23,
name: '功能类-顺丰快递自动点击[立即下单]',
actionDelay: 1000,
resetMatch: 'activity',
rules: [
{
action: 'clickCenter',
matches: [
'@button[text="立即下单"] < View - View > TextView[text="无需预约,时效以快递员揽收时为准"]',
],
activityIds: [
'.plugin.appbrand.ui.AppBrandUI',
],
},
],
}
Beta Was this translation helpful? Give feedback.
All reactions