Sha256: 6421aaa614946a711f9b2ca0de08d52ea97b434a5dcd68fc148c0fd7d8caf139

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

require 'watirspec_helper'

describe 'IFrames' do
  before :each do
    browser.goto(WatirSpec.url_for('iframes.html'))
  end

  describe 'with selectors' do
    it 'returns the matching elements' do
      expect(browser.iframes(id: 'iframe_2').to_a).to eq [browser.iframe(id: 'iframe_2')]
    end
  end

  describe 'eql?' do
    it 'matches equality of iframe with that from a collection' do
      expect(browser.iframes.last).to eq browser.iframe(id: 'iframe_3')
    end
  end

  describe '#length' do
    it 'returns the correct number of iframes' do
      expect(browser.iframes.length).to eq 3
    end
  end

  describe '#[]' do
    it 'returns the iframe at the given index' do
      expect(browser.iframes[0].id).to eq 'iframe_1'
    end
  end

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

      browser.iframes.each_with_index do |f, index|
        expect(f.name).to eq browser.iframe(index: index).name
        expect(f.id).to eq browser.iframe(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/iframes_spec.rb