如何确定在 Watir 中选择什么类型的 HTML 元素

发布于 2024-11-17 21:44:01 字数 771 浏览 2 评论 0原文

这是 计算 Watir 问题中具有相同属性的 HTML 元素的数量。

因此,假设我有一个 HTML 元素,如下所示。

<input type="password" class="foo" /> 
<span class="foo"></span>
<a href='1' class="foo">Text</a>

所以,我可以通过使用获取具有相同类名的所有元素的集合,

 elements = browser.elements(:class,"foo")

因为它是一个集合,我可以使用 every 方法来迭代该集合。在迭代集合时,我想确定代表什么类型的标签? (类似于 Javascript 中的 nodeName 或 tagName 方法)。我们可以在 Watir 中做到这一点吗?

示例代码为:

elements = browser.elements(:class,"foo")
elements.each { |element|
puts element.<Watir_method_similar_to_nodeName_of_JavaScript>
}

This is a follow-up to the Counting the number of HTML elements having same attribute in Watir question.

So, suppose I have a HTML element as follows

<input type="password" class="foo" /> 
<span class="foo"></span>
<a href='1' class="foo">Text</a>

So, I can obtain a collection of all the elements having the same class name by using

 elements = browser.elements(:class,"foo")

Since, its an collection, I can use the each method to iterate over the collection. While iterating over the collection, I want to determine what type of tag is represented? (Something similar to the nodeName or the tagName method in Javascript). Is there a way we could do this in Watir?

Sample code would be :

elements = browser.elements(:class,"foo")
elements.each { |element|
puts element.<Watir_method_similar_to_nodeName_of_JavaScript>
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

内心旳酸楚 2024-11-24 21:44:01
elements.each {|element| puts element.tag_name}

输出:

input
span
a
elements.each {|element| puts element.tag_name}

Output:

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