Sha256: c7d90b4b1315aa24b07e0384c09e3cc3f2f23dca6fd92fe0e72bd65180080901

Contents?: true

Size: 863 Bytes

Versions: 1

Compression:

Stored size: 863 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

describe 'Spans' do
  before :each 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-7.2.0 spec/watirspec/elements/spans_spec.rb