Sha256: b774f22f71ab001154d3e575726bda49b78405c1e9a4e2a74ebdd166a1e65d74

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

require 'watirspec_helper'

module Watir
  describe 'Strongs' 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.strongs(class: 'descartes').to_a).to eq [browser.strong(class: 'descartes')]
      end
    end

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

    describe '#[]' do
      it 'returns the div at the given index' do
        expect(browser.strongs[0].id).to eq 'descartes'
      end
    end

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

        browser.strongs.each_with_index do |s, index|
          strong = browser.strong(index: index)
          expect(s.id).to eq strong.id
          expect(s.class_name).to eq strong.class_name

          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/strongs_spec.rb
watir-7.2.2 spec/watirspec/elements/strongs_spec.rb
watir-7.2.1 spec/watirspec/elements/strongs_spec.rb