imacros 在 mac firefox 上使用数据源循环

imacros use datasource loop on mac firefox

当我 运行 我的代码出现这个错误... (宏停在数据源行)

我可能没有写正确的数据源行。 (csv文件在默认路径)

我正在尝试导入 csv 数据并在此过程中循环执行我的操作:

SET !ERRORIGNORE YES
SET !DATASOURCE pages.csv
SET !DATASOURCE_COLUMNS 1
'Start at line 1 in the file 
SET !LOOP 1
'Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
set var1 {{!COL1}}

TAB T=1
URL GOTO=https://www.cnnc.com/{{var1}}
wait seconds=4
TAG POS=7 TYPE=SPAN ATTR=TXT:
wait seconds=4

我正在尝试连续重复宏的第二部分。 循环使用来自 csv 文件的下一个输入。 如果有帮助,请使用免费的 firefox 版本。

试试这个:

SET !ERRORIGNORE YES
SET !DATASOURCE pages.csv
SET !DATASOURCE_LINE {{!LOOP}} 
SET !DATASOURCE_COLUMNS 1
'Start at line 1 in the file 
SET !LOOP 1
'Increase the current position in the file with each loop
SET !DATASOURCE_LINE {{!LOOP}}
set var1 {{!COL1}}

TAB T=1
URL GOTO=https://www.cnnc.com/{{var1}}
wait seconds=4
TAG POS=7 TYPE=SPAN ATTR=TXT:
wait seconds=4

我添加了 SET !DATASOURCE_LINE {{!LOOP}}