Sha256: b58c19b861a28411aceef6af539a6f3bf778488e0353fe43ca94a4d5fdaad901
Contents?: true
Size: 1021 Bytes
Versions: 2
Compression:
Stored size: 1021 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 bug "http://github.com/jarib/celerity/issues#issue/25", :celerity do describe "with selectors" do it "returns the matching elements" do browser.metas(:name => "description").to_a.should == [browser.meta(:name => "description")] end end 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.1.1 | spec/watirspec/metas_spec.rb |
watir-webdriver-0.1.0 | spec/watirspec/metas_spec.rb |