我想寫一個watir webdriver腳本,它檢索元素的屬性然後獲取它們的值。 給定元素如何檢索使用watir webdriver的元素屬性列表
<input id="foobar" width="200" height="100" value="zoo" type="text"/>
希望我可以做類似如下:
testElement = $b.element(:id, "foobar")
testElement.attributes.each do |attribute|
puts("#{attribute}: #{testElement.attribute_value(attribute)}")
end
我希望得到
id: foobar
width: 200
height: 100
value: zoo
type: text
您有問題嗎?也許試試這個:testElement = $ b.element(:id =>「foobar」) –