我有一个iMacro脚本,并试图减少标记的等待时间。默认为6秒,我想设置为1秒。
当前代码:
var res = iimPlay("CODE:SET TIMEOUT_STEP 0\nSET TIMEOUT_TAG 0\nEVENT TYPE=CLICK SELECTOR=\"#mutual_match_modal>DIV:nth-of-type(5)>UL>LI:nth-of-type(2)>BUTTON\" BUTTON=0");
但不行。有什么帮助吗?
答案 0 :(得分:0)
没有意识到我在设置超时时错过了!
。
正确的代码:
var res = iimPlay("CODE:SET !TIMEOUT_STEP 0\nSET !TIMEOUT_TAG 0\nEVENT TYPE=CLICK SELECTOR=\"#mutual_match_modal>DIV:nth-of-type(5)>UL>LI:nth-of-type(2)>BUTTON\" BUTTON=0");
非常感谢!