Imacros随机等待时间在下限和上限之间

时间:2014-12-08 05:40:19

标签: time wait imacros

VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=http://mafiamatrix.com/income/earn.asp
TAG POS=1 TYPE=INPUT:RADIO FORM=ACTION:earning.asp ATTR=ID:Streetfight
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:earning.asp ATTR=NAME:B1
Wait Seconds = 181

我希望等待秒时间为180到190秒之间的随机值

1 个答案:

答案 0 :(得分:1)

SET rndSecWait EVAL("180 + Math.floor(Math.random()*11)")
WAIT SECONDS={{rndSecWait}}

(此等待时间包括180秒和190秒。)