如果找到imacros的单词,请刷新页面

时间:2013-03-17 08:52:00

标签: imacros

我希望imacros转到特定页面 并搜索一个单词,然后刷新页面并循环搜索,如果找到单词,否则转到下一步

1 个答案:

答案 0 :(得分:1)

为此你可以使用javascript脚本。没有人会让你成为这样的剧本,但这是一个例子。

var macro;

macro ="CODE:";
macro +="TAG POS=1 TYPE=DIV ATTR=TXT:sometext";


if(iimPlay(macro)>0)
{
//text is there
//do something 

}
else
{
//text is not there
}