在silktest中获取对象子对象的类型

发布于 2024-11-30 12:02:57 字数 220 浏览 1 评论 0原文

假设我有一个对象并且它有很多子对象。我可以知道如何找到它们的类型吗?

我首先使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚雾 2024-12-07 12:02:57

最简单的方法是使用 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, use yourParent.FindAll(//DomTextField).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文