Sha256: 2b5382d5c356969a928c95506ca842e7cf3d06ed1db351264383b273cefd5ac7

Contents?: true

Size: 740 Bytes

Versions: 1

Compression:

Stored size: 740 Bytes

Contents

# encoding: utf-8
require File.expand_path('spec_helper', File.dirname(__FILE__))

describe "Metas" do

  before :each do
    browser.goto(WatirSpec.files + "/forms_with_input_elements.html")
  end

  describe "#length" do
    it "returns the number of meta elements" do
      browser.metas.length.should == 2
    end
  end

  describe "#[]" do
    it "returns the meta element at the given index" do
      browser.metas[1].name.should == "description"
    end
  end

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

      browser.metas.each_with_index do |m, index|
        m.content.should == browser.meta(:index, index).content
		count += 1
      end

      count.should > 0
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-webdriver-0.0.7 spec/watirspec/metas_spec.rb