如何在 imacros (slack.com) 中滚动模态 window?

how to scroll modal window in imacros (slack.com)?

我有任务:在#general 频道中获取 (myworkspace).slack.com/messages/****/details/ 的所有名称成员。

在此页面上,我单击 "Members" -> "See all members"。 模态 window 出现,Imacros 必须滚动此模态 window 而所有成员都不可见。

(js) 但是这段代码不起作用:

var modal = window.content.document.getElementById("generic_dialog");  // Modal window with all members
iimPlayCode("URL GOTO=javascript:modal.scrollBy(0, 1000)"); // Scrolling

如果有人更喜欢使用小书签来滚动该列表:

javascript:(function() {
    var scrInt = setInterval(() => {try {document.querySelector("#channel_membership_dialog_scroller").scrollTop += 5000} catch(e) {clearInterval(scrInt)}}, 1500);
})();