Sha256: 805a994dc4c8e5dc4f1316869398c6b442e70bb48b979a668c78e1f062c0bc9a

Contents?: true

Size: 925 Bytes

Versions: 1

Compression:

Stored size: 925 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

describe 'Dds' 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.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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-7.2.0 spec/watirspec/elements/dds_spec.rb