0

我一直在使用 iMacros 在发布照片时输入多个标签以节省时间。他们最近更新了网站,我不知道如何让 iMacro 输入多个标签。

录制宏时,这是 iMacro 提供的代码

TAG POS=11 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=* CONTENT=foo,

,需要启动一个新标签。它没有开始新标签或正确记录内容。

我查看了标签出现的代码,这就是下面

<section class="tag_editor" style="display: block;">
<div class="tags">
<input class="post_tags" type="text" value="" style="display: none;" name="post[tags]">
<div class="editor_wrapper">
<input class="editor borderless" type="text">
</div>
</div>
</section>

看起来我需要的输入就在身边editor_wrappereditor borderless而且我认为我需要将它添加到FORM=NAME:NoFormNameiMacroATTR=*TAG。我尝试了不同的组合,但 iMacro 不会为我自动填充标签。tumblr 上的新帖子功能是一个弹出式 ajax 外观窗口。

在站点更新之前工作的旧宏看起来像这样。不确定它是否会有所帮助。

TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/blog/foobar/new/photo ATTR=ID:tag_editor_input CONTENT=foo,
WAIT SECONDS=.3
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/blog/foobar/new/photo ATTR=ID:tag_editor_input CONTENT=bar,
WAIT SECONDS=.3
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:/blog/foobar/new/photo ATTR=ID:tag_editor_input CONTENT=foo,

寻求帮助使其再次工作。为我自动填充这些标签为我节省了大量时间。

4

1 回答 1

0

try this one to fill the second input:

TAG POS=1 TYPE=INPUT:TEXT ATTR=CLASS:editor* CONTENT=foo,

let me know if it works

于 2013-01-29T16:45:34.650 回答