spec/watirspec/elements/tables_spec.rb in watir-7.2.0 vs spec/watirspec/elements/tables_spec.rb in watir-7.2.1

- old
+ new

@@ -1,42 +1,44 @@ # frozen_string_literal: true require 'watirspec_helper' -describe 'Tables' do - before :each do - browser.goto(WatirSpec.url_for('tables.html')) - end +module Watir + describe TableCollection do + before do + browser.goto(WatirSpec.url_for('tables.html')) + end - describe 'with selectors' do - it 'returns the matching elements' do - expect(browser.tables(rules: 'groups').to_a).to eq [browser.table(rules: 'groups')] + describe 'with selectors' do + it 'returns the matching elements' do + expect(browser.tables(rules: 'groups').to_a).to eq [browser.table(rules: 'groups')] + end end - end - describe '#length' do - it 'returns the number of tables' do - expect(browser.tables.length).to eq 4 + describe '#length' do + it 'returns the number of tables' do + expect(browser.tables.length).to eq 4 + end end - end - describe '#[]' do - it 'returns the p at the given index' do - expect(browser.tables[0].id).to eq 'axis_example' - expect(browser.tables[1].id).to eq 'outer' - expect(browser.tables[2].id).to eq 'inner' + describe '#[]' do + it 'returns the p at the given index' do + expect(browser.tables[0].id).to eq 'axis_example' + expect(browser.tables[1].id).to eq 'outer' + expect(browser.tables[2].id).to eq 'inner' + end end - end - describe '#each' do - it 'iterates through tables correctly' do - count = 0 + describe '#each' do + it 'iterates through tables correctly' do + count = 0 - browser.tables.each_with_index do |t, index| - expect(t.id).to eq browser.table(index: index).id - count += 1 - end + browser.tables.each_with_index do |t, index| + expect(t.id).to eq browser.table(index: index).id + count += 1 + end - expect(count).to be > 0 + expect(count).to be > 0 + end end end end