Sha256: 3e08cad887e44f2553bd9eeae8812ab66d574b3d4186e3cfcbda2af52b5abe74
Contents?: true
Size: 882 Bytes
Versions: 1
Compression:
Stored size: 882 Bytes
Contents
# encoding: utf-8 require File.expand_path('spec_helper', File.dirname(__FILE__)) describe "CheckBoxes" do before :each do browser.goto(WatirSpec.files + "/forms_with_input_elements.html") end describe "#length" do it "returns the number of checkboxes" do browser.checkboxes.length.should == 7 end end describe "#[]" do it "returns the checkbox at the given index" do browser.checkboxes[0].id.should == "new_user_interests_books" end end describe "#each" do it "iterates through checkboxes correctly" do count = 0 browser.checkboxes.each_with_index do |c, index| c.name.should == browser.checkbox(:index, index).name c.id.should == browser.checkbox(:index, index).id c.value.should == browser.checkbox(:index, index).value 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/checkboxes_spec.rb |