0

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

4

1 回答 1

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
}
于 2013-03-17T22:05:46.350 回答