sean_n wrote: > Using the watir module, is there a way to show all the hyperlinks in a > DIV? > Can you please provide some code snippets? How about: div_links = ie.div(:id, "some_id").links div_links.each { |l| puts l.to_s } -- Posted via http://www.ruby-forum.com/.