Firefox iMacros循环直到找不到值

时间:2012-08-07 13:20:06

标签: firefox loops imacros

我正在使用iMacros for Firefox,我想循环直到找不到值,因为每个页面都不同。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

你不能在Imacros里面做到这一点。 LOOP必须具有最大值,它不能永远存在。使用while循环编写一个javascript,然后在该循​​环中使用您搜索的值启动Imacro脚本并使其返回结果。

var searchValue = "blabla"
var found = false;
while(!found)
var ret;
ret = iimSet("searchValue", searchValue);
ret = iimPlay("myScript.iim");
/* Check for error */
if (ret = 1) {
 /* if no error we found it*/   
 found = true;}
else {
err = iimGetLastError();
/* we check if it is different than the error for Tag not found -921; else we go*/
    if (err !== -921) alert("Other error");
};