Release Name: 1.2
Notes:
Watir release 1.2
This release contains several new features:
URL List
--------
The list of unique urls that has been visited is now available. Use the following to access, and clear it
ie.url_list # returns an array of the unique urls visited
ie.clear_url_list # clear the list
Properties for Objects
----------------------
It is now possible to do:
button = ie.button(:index,1)
puts button.name
puts button.id
puts button.value
The properties depend upon the object, but include href, innerText ( for links ) as well as those aboev. Consult the API reference for full details
Iterator objects
----------------
It is now possible to iterate through most types of element. For example:
ie.buttons.each do |button|
if button.name == "Test Button"
button.click
break
end
end
This release also contains many bug fizes to the tables code, a new graphical installer, and better api documentation
Many thanks to all who have contributed!
Changes:
|