I have simple macros, that must go to website and then do 30 times click on element. Here is my macros, what i'm doing wrong?
var macros, follow,start;
macros = "CODE:";
macros += "URL GOTO=http://twiends.com/home" + "\n";
follow += "TAG POS=1 TYPE=I ATTR=CLASS:'netfollow twitter'" + "\n";
iimPlay(macros)
for (i=1 ;i < 30; i++) {
start = iimPlay(follow);
}
答案 0 :(得分:0)
尝试如下:
var macros, follow, start;
macros = "CODE:";
macros += "URL GOTO=http://twiends.com/home" + "\n";
iimPlay(macros);
follow = "TAG POS=1 TYPE=I ATTR=CLASS:'netfollow twitter'" + "\n";
for (i = 1; i <= 30; i++) {
start = iimPlayCode(follow);
}