我如何 select 元素在模态宏上做出反应 select

How i can select elements for react select on modal imacros

我的项目是用 ReactJS 构建的

我尝试使用 macros 在 select 中添加 select 元素。

我有这个网站的代码相似 https://jedwatson.github.io/react-select/ 首先 select (States)

我去了select维多利亚

我已经记录了这段代码,但是 shi 不工作请帮助我

URL GOTO=https://jedwatson.github.io/react-select/
TAG POS=1 TYPE=SPAN ATTR=ID:react-select-2--value-item
EVENT TYPE=CLICK SELECTOR="#react-select-2--value-item" BUTTON=0
EVENT TYPE=MOUSEDOWN SELECTOR="#react-select-2--option-4" BUTTON=0
EVENT TYPE=MOUSEUP POINT="(523,688)"

您的 Qt 中缺少 FCI...

就像您在 iMacros 论坛上的并行线程中回答的那样:
https://forum.imacros.net/viewtopic.php?f=2&t=30587&p=83724#p83720

VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=https://jedwatson.github.io/react-select/

'Select "Victoria" in 'States' DDLB:
EVENT TYPE=CLICK SELECTOR="#example>DIV>DIV>DIV>DIV>SPAN:nth-of-type(3)>SPAN" BUTTON=0
EVENT TYPE=CLICK SELECTOR="#react-select-2--option-2" BUTTON=0

如果您想 select DDLB 中的项目名称...:

VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=https://jedwatson.github.io/react-select/

EVENTS TYPE=KEYPRESS SELECTOR="#state-select" CHARS="Vict"
EVENT TYPE=CLICK SELECTOR="#react-select-2--option-0" BUTTON=0

... => 从键入 "V' or "Vict" 或全名 => "Victoria" 成为第一个条目,对应于选择器中的“--option-0”...

(Tested on iMacros for FF v8.8.2, PM v26.3.3 (=FF47), Win10_x64.)

编辑:
+ 更多信息和一些其他解决方案也适用于 iMacros 论坛并行线程中的不同站点...