Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从文本组合框菜单中选择一个文本项。它是一个DHTM文本组合框,我正在使用RFT 8.1.1.3. 组合框的属性是.class=Html.INPUT.text并且它不显示任何其他独特的属性。下拉值没有索引和长度属性。那么如何选择下拉菜单的值。
DHTM
RFT 8.1.1.3
.class=Html.INPUT.text
如果它实际上是一个组合框,它不应该具有 .class 属性作为 Html.INPUT.text
DOM 层次结构中是否有 Html.INPUT.select ?
查看 DOM,您可以尝试找到元素的实际层次结构,然后使用 RFT 的 find() API,您可以尝试找到您要查找的控件并在其上调用一些 setProperty() 来选择特定元素。
如果您可以指向存在此类组合框的某个页面,这将有所帮助,以便我们更好地理解控件。