Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 imacros 转到特定页面并搜索单词,然后刷新页面并循环搜索,如果找到单词,则转到下一步
为此,您可以使用 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 }