Sha256: 4cfd9f9913008d0ba65975993af6871c0a65cc3dd3fe8646c478a82e7b5319df

Contents?: true

Size: 989 Bytes

Versions: 3

Compression:

Stored size: 989 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe LabelCollection do
    before do
      browser.goto(WatirSpec.url_for('forms_with_input_elements.html'))
    end

    describe 'with selectors' do
      it 'returns the matching elements' do
        expect(browser.labels(for: 'new_user_first_name').to_a).to eq [browser.label(for: 'new_user_first_name')]
      end
    end

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

    describe '#[]' do
      it 'returns the label at the given index' do
        expect(browser.labels[0].id).to eq 'first_label'
      end
    end

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

        browser.labels.each_with_index do |l, index|
          expect(l.id).to eq browser.label(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/labels_spec.rb
watir-7.2.2 spec/watirspec/elements/labels_spec.rb
watir-7.2.1 spec/watirspec/elements/labels_spec.rb