我如何选择用于模态微反应的元素

问题描述 投票:0回答:1

我有使用ReactJS构建的项目

我尝试使用imacros在select中选择元素。

我有与此网站相似的代码https://jedwatson.github.io/react-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)"
javascript reactjs imacros
1个回答
0
投票

您的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

如果要在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”或“ Vict”或全名=>“维多利亚”成为第一个条目,对应于选择器中的“ --option-0” ...

(Tested on iMacros for FF v8.8.2, PM v26.3.3 (=FF47), Win10_x64.)
© www.soinside.com 2019 - 2024. All rights reserved.