Sha256: 0db57dd0fdc968d365eade6038b4aa5e7a84b528c4c2d5daf6f1c2530ca2c017
Contents?: true
Size: 930 Bytes
Versions: 3
Compression:
Stored size: 930 Bytes
Contents
# frozen_string_literal: true require 'watirspec_helper' module Watir describe 'Inses' 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.inses(class: 'lead').to_a).to eq [browser.ins(class: 'lead')] end end describe '#length' do it 'returns the number of inses' do expect(browser.inses.length).to eq 5 end end describe '#[]' do it 'returns the ins at the given index' do expect(browser.inses[0].id).to eq 'lead' end end describe '#each' do it 'iterates through inses correctly' do count = 0 browser.inses.each_with_index do |s, index| expect(s.id).to eq browser.ins(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/inses_spec.rb |
watir-7.2.2 | spec/watirspec/elements/inses_spec.rb |
watir-7.2.1 | spec/watirspec/elements/inses_spec.rb |