master
click here to add a description
click here to add a homepage
watir on steroids / jruby wrapper for htmlunit — Read more
It would be great if there was a way to locate tables by caption, eg finding
<table> <caption>My first table</caption> <thead> ... </table>
by writing
browser.table(:caption => "My first table")
WDYT?
As per discussion on the mailing list, a possible simplification of the element finder methods for unique elements. For example:
@table.thead.cells
as a shorthand for either of:
@table.thead(:index => 1).cells @table.theads.first.cells