iMacros:URL GOTO={{!COLn}} 错误

iMacros: URL GOTO={{!COLn}} Error

我有一个八列的 csv('UTF-8, with BOM' 格式),其中第八列是 URL。我有以下足够简单的代码,应该将我带到另一个待处理的 URL 行:

VERSION BUILD=123456 RECORDER=FX    
SET !DATASOURCE /Users/Ryan/iMacros/test.csv
SET !DATASOURCE_COLUMNS 8
SET !LOOP 2
SET !DATASOURCE_LINE {{!LOOP}}
TAB T=1
URL GOTO={{!COL8}}

除此之外还有更多内容,但我基本上只需要第 8 列中的 URL 在其余代码之前填充。有人知道为什么我会收到疯狂的错误消息吗?

Error loading page http://api.mybrowserbar.com/cgi/searchp ... google.com/, line 7 (Error code: -933)

似乎是“https://www.google.com/" at the end of the error message is just whichever website I was currently on while trying to run the macro; the test URL currently in column 8, row 2 is http://www.facebook.com,它在错误中没有出现。"Error code: -933" 意味着 "Network error while file or page loading." 有什么想法吗?我正在使用最新版本的 iMacros 和 Firefox Mac OS X.

好吧,这很简单。例如,不要将您的 URL 作为 http://www.google.com 加载到 csv 中,只需将它们加载为 ="http://www.google.com" 就可以了。