Sha256: 7c2cabd9f0a328aad4eb3a07f058cc0a84f925d6d691c54d89b966487afae9c6
Contents?: true
Size: 390 Bytes
Versions: 46
Compression:
Stored size: 390 Bytes
Contents
module Watir # # Custom class representing table cell (th or td). # class Cell < TableCell end # Cell class CellCollection < TableCellCollection def elements # we do this craziness since the xpath used will find direct child rows # before any rows inside thead/tbody/tfoot... super.sort_by { |e| e.attribute(:cellIndex).to_i } end end end # Watir
Version data entries
46 entries across 46 versions & 2 rubygems