使用 iMacro 从具有 ID 和随机字符串部分的地址保存图像

Save images from adresses with an ID and a random string part using iMacro

我想从网站保存一些图片,地址如下

http://somewebsite.com/{{ID}}_{{rand}}.JPG

{{ID}} 从 01 到 99 不等。{{rand}} 部分是每个 ID 的 8 个随机大写字符的字符串。例如:

http://somewebsite.com/93_ABCDEFGHI.JPG

是否可以检查字符串部分的所有大小写?如果是的话,你能告诉我怎么做吗?

如果你还想得到208+毫的随机字符串:

SET frc "function frc() {return String.fromCharCode(65 + Math.floor(Math.random()*26))};"
SET rand EVAL("eval('{{frc}}'); var s = ''; for (i = 1; i <= 8; i++) s += frc(); s;")
http://somewebsite.com/{{ID}}_{{rand}}.JPG

(它们几乎不可重复。)