Sha256: 1252ca5a973b046c87f081f39a0171fd96a74f174899f86f7cd0ddb9b2717ccc
Contents?: true
Size: 998 Bytes
Versions: 3
Compression:
Stored size: 998 Bytes
Contents
# frozen_string_literal: true require 'watirspec_helper' module Watir describe 'Dds' do before do browser.goto(WatirSpec.url_for('definition_lists.html')) end describe 'with selectors' do it 'returns the matching elements' do expect(browser.dds(text: '11 years').to_a).to eq [browser.dd(text: '11 years')] end end describe '#length' do it 'returns the number of dds' do expect(browser.dds.length).to eq 11 end end describe '#[]' do it 'returns the dd at the given index' do expect(browser.dds[1].title).to eq 'education' end end describe '#each' do it 'iterates through dds correctly' do count = 0 browser.dds.each_with_index do |d, index| expect(d.id).to eq browser.dd(index: index).id expect(d.class_name).to eq browser.dd(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/dds_spec.rb |
watir-7.2.2 | spec/watirspec/elements/dds_spec.rb |
watir-7.2.1 | spec/watirspec/elements/dds_spec.rb |