Sha256: d4ebd03a90b50c3b509273e18bb720e29f1013ef608563e8286af2e5c7832fec
Contents?: true
Size: 1014 Bytes
Versions: 3
Compression:
Stored size: 1014 Bytes
Contents
# frozen_string_literal: true require 'watirspec_helper' module Watir describe 'Dts' do before 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 end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
watir-7.3.0 | spec/watirspec/elements/dts_spec.rb |
watir-7.2.2 | spec/watirspec/elements/dts_spec.rb |
watir-7.2.1 | spec/watirspec/elements/dts_spec.rb |