Sha256: 64cbb9651fb4fc1aaf79103b3422ab1e34e48572e6783a567486ab20c3040362
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 Bytes
Contents
# frozen_string_literal: true require 'watirspec_helper' describe 'Dts' do before :each do browser.goto(WatirSpec.url_for('definition_lists.html')) end describe 'with selectors' do it 'returns the matching elements' do expect(browser.dts(class: 'current-industry').to_a).to eq [browser.dt(class: 'current-industry')] end end describe '#length' do it 'returns the number of dts' do expect(browser.dts.length).to eq 11 end end describe '#[]' do it 'returns the dt at the given index' do expect(browser.dts[0].id).to eq 'experience' end end describe '#each' do it 'iterates through dts correctly' do count = 0 browser.dts.each_with_index do |d, index| expect(d.id).to eq browser.dt(index: index).id expect(d.class_name).to eq browser.dt(index: index).class_name 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/dts_spec.rb |