标签: html internet-explorer watir
我的HTML看起来像这样:
<input custom_attribute="so cool" type="text" />
我希望使用Watir获得custom_attribute的价值。
custom_attribute
答案 0 :(得分:24)
browser.text_field(:index, 1).attribute_value("custom_attribute") #=> "so cool"
来源: