Sha256: da1e226ff6739280bc587cd9c04f7c9fb27fe5937f9af5d1de5ec5983b648f44
Contents?: true
Size: 1.06 KB
Versions: 9
Compression:
Stored size: 1.06 KB
Contents
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_2') end end describe '#length' do it 'returns the correct number of iframes' do expect(browser.iframes.length).to eq 2 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
9 entries across 9 versions & 1 rubygems