本文介绍了如何使用Watir获取元素自定义属性的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
< input custom_attribute =so cooltype =text/ >
我想获得 custom_attribute
使用。
解决方案
browser.text_field(:index,1).attribute_value(custom_attribute)
#=> 很酷
来源: I have HTML that looks like this:
ul> <input custom_attribute="so cool" type="text" />
I would like to get value of custom_attribute
using Watir.
解决方案
browser.text_field(:index, 1).attribute_value("custom_attribute")
#=> "so cool"
Sources:
- http://www.mail-archive.com/wtr-general%40rubyforge.org/msg06769.html
- http://rdoc.info/gems/watir/1.6.6/Watir/Element#attribute_value-instance_method
- https://github.com/watir/watir-classic/blob/master/lib/watir-classic/element.rb
- http://zeljkofilipin.com/watir-select-element-using-custom-attribute/
这篇关于如何使用Watir获取元素自定义属性的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!