Sha256: 41bd8b85861fc6976b2718194df13f8b72b5c93a1a91525c0bae8cd6638c4925

Contents?: true

Size: 998 Bytes

Versions: 3

Compression:

Stored size: 998 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe MapCollection do
    before do
      browser.goto(WatirSpec.url_for('images.html'))
    end

    describe 'with selectors' do
      it 'returns the matching elements' do
        expect(browser.maps(name: 'triangle_map').to_a).to eq [browser.map(name: 'triangle_map')]
      end
    end

    describe '#length' do
      it 'returns the number of maps' do
        expect(browser.maps.length).to eq 2
      end
    end

    describe '#[]' do
      it 'returns the p at the given index' do
        expect(browser.maps[0].id).to eq 'triangle_map'
      end
    end

    describe '#each' do
      it 'iterates through maps correctly' do
        count = 0

        browser.maps.each_with_index do |m, index|
          expect(m.name).to eq browser.map(index: index).name
          expect(m.id).to eq browser.map(index: index).id
          count += 1
        end

        expect(count).to be > 0
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
watir-7.3.0 spec/watirspec/elements/maps_spec.rb
watir-7.2.2 spec/watirspec/elements/maps_spec.rb
watir-7.2.1 spec/watirspec/elements/maps_spec.rb