Sha256: 88fcbf5637b298e35440c0acb7453d757e677ad153a5e2f3367c6a1ed5940998
Contents?: true
Size: 961 Bytes
Versions: 20
Compression:
Stored size: 961 Bytes
Contents
require 'watirspec_helper' describe 'Dls' 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.dls(title: 'experience').to_a).to eq [browser.dl(title: 'experience')] end end describe '#length' do it 'returns the number of dls' do expect(browser.dls.length).to eq 3 end end describe '#[]' do it 'returns the dl at the given index' do expect(browser.dls[0].id).to eq 'experience-list' end end describe '#each' do it 'iterates through dls correctly' do count = 0 browser.dls.each_with_index do |d, index| expect(d.text).to eq browser.dl(index: index).text expect(d.id).to eq browser.dl(index: index).id expect(d.class_name).to eq browser.dl(index: index).class_name count += 1 end expect(count).to be > 0 end end end
Version data entries
20 entries across 20 versions & 1 rubygems