Sha256: 2a71cf0118fea47cd6a961b303c433c6096ec190208598a8d705468c86835000
Contents?: true
Size: 1.07 KB
Versions: 3
Compression:
Stored size: 1.07 KB
Contents
# encoding: utf-8 require File.expand_path("../spec_helper", __FILE__) describe "Labels" 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.labels(:for => "new_user_first_name").to_a.should == [browser.label(:for => "new_user_first_name")] end end end describe "#length" do it "returns the number of labels" do browser.labels.length.should == 26 # changed this from 25 - Jari end end describe "#[]" do it "returns the label at the given index" do browser.labels[0].id.should == "first_label" end end describe "#each" do it "iterates through labels correctly" do count = 0 browser.labels.each_with_index do |l, index| l.id.should == browser.label(:index, index).id l.value.should == browser.label(:index, index).value count += 1 end count.should > 0 end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.1.4 | spec/watirspec/labels_spec.rb |
watir-webdriver-0.1.3 | spec/watirspec/labels_spec.rb |
watir-webdriver-0.1.2 | spec/watirspec/labels_spec.rb |