在silktest中获取对象子对象的类型
假设我有一个对象并且它有很多子对象。我可以知道如何找到它们的类型吗?
我首先使用 getChildren() 来获取孩子,然后对每个孩子使用 typeof() 。
Typeof 总是返回 窗户。
我想知道它们是否是 DomTextField 或 DomLink 等而不是 Window。
谢谢
Assume i have an object and it has lots of children.May i know how i can find their types?
I first used getChildren() to get the children and then used typeof() for each child.
Typeof always returns
Window.
I would like to find if they are DomTextField or DomLink etc and not Window.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用
yourParent.FindAll(/DomTextField)
,这将为您提供所有直接子级,如果您想包括所有后代,请使用yourParent.FindAll(//DomTextField)< /代码>。
The easiest way is to use
yourParent.FindAll(/DomTextField)
, this will give you all direct children, if you want to include all descendants, useyourParent.FindAll(//DomTextField)
.