Here is an example using a link to the Pickaxe book by the Pragmatic Programmers:
What you see in the web browser:
Pickaxe
id Attribute
Watir code to click a link using the id attribute:ie.link(:id, "one").click
name Attribute
Watir code to click a link using the name attribute:ie.link(:name, "book").click
Text
Watir code to click a link using link's text:ie.link(:text, "Pickaxe").click
href Attribute
Watir code to click a link using the href attribute:ie.link(:href, "http://pragmaticprogrammer.com/titles/ruby/").click
No comments:
Post a Comment