Sha256: b1a65b7a125b2b15a31949e04858e9f86da798aaaf6d8edf0fb82505eaca767a

Contents?: true

Size: 939 Bytes

Versions: 3

Compression:

Stored size: 939 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe UListCollection 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.uls(class: 'navigation').to_a).to eq [browser.ul(class: 'navigation')]
      end
    end

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

    describe '#[]' do
      it 'returns the ul at the given index' do
        expect(browser.uls[0].id).to eq 'navbar'
      end
    end

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

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