# File lib/celerity/elements/table.rb, line 135
    def to_a
      assert_exists
      # @object.getRows.map do |table_row|
      #   table_row.getCells.map { |td| td.asText.strip }
      # end
      rows.map do |table_row|
        table_row.map { |td| td.text }
      end
    end