Sha256: d0d0817e98c6cf85f6a918930495aac7381ae8ce86273a03d142f4f5cc5e28af

Contents?: true

Size: 941 Bytes

Versions: 3

Compression:

Stored size: 941 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe SpanCollection do
    before do
      browser.goto(WatirSpec.url_for('non_control_elements.html'))
    end

    describe 'with selectors' do
      it 'returns the matching elements' do
        expect(browser.spans(class: 'footer').to_a).to eq [browser.span(class: 'footer')]
      end
    end

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

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

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

        browser.spans.each_with_index do |s, index|
          expect(s.id).to eq browser.span(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/spans_spec.rb
watir-7.2.2 spec/watirspec/elements/spans_spec.rb
watir-7.2.1 spec/watirspec/elements/spans_spec.rb