如何确定在 Watir 中选择什么类型的 HTML 元素
这是 计算 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输出:
Output: