我从HELP文档里找到 WEB_REG_FIND的一个用法
In the following example,web_reg_findfunction searches for the text string "ABC". If the string is not found, the script. executesAction A. If the string is found one or more times, it executesAction B.
web_reg_find("Text=ABC", "SaveCount=abc_count", LAST);
web_url("Step", "URL=...", LAST);
if (strcmp(lr_eval_string("{abc_count}"), "0") == 0)
Action A
else
Action B
但是 调用ACTION A和 ACTION B 该怎么写?像它写得这么简单 直接就写上ACTION的名字 报错的。 求高手给一段 执行ACTION的代码!