Sha256: 7dbb435cdb24d18bbb3824daf386422f4f6b1d59f37de9553ee6c07dd781f187

Contents?: true

Size: 933 Bytes

Versions: 1

Compression:

Stored size: 933 Bytes

Contents

require "watirspec_helper"

describe "Metas" do

  before :each do
    browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
  end

  describe "with selectors" do
    it "returns the matching elements" do
      expect(browser.metas(name: "description").to_a).to eq [browser.meta(name: "description")]
    end
  end

  describe "#length" do
    it "returns the number of meta elements" do
      expect(browser.metas.length).to eq 2
    end
  end

  describe "#[]" do
    it "returns the meta element at the given index" do
      expect(browser.metas[1].name).to eq "description"
    end
  end

  describe "#each" do
    it "iterates through meta elements correctly" do
      count = 0

      browser.metas.each_with_index do |m, index|
        expect(m.content).to eq browser.meta(index: index).content
        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/metas_spec.rb