Sha256: f4650ff82bd4114002b2cb21c7e621fa65bdb72c2172c40cadf72282435a61d3

Contents?: true

Size: 954 Bytes

Versions: 1

Compression:

Stored size: 954 Bytes

Contents

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-6.10.1 spec/watirspec/elements/dts_spec.rb