Sha256: 820101b177374fcf673018ac7a5297c850affe2a431b3beb29a459ea737c7809
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# encoding: utf-8 require File.expand_path('spec_helper', File.dirname(__FILE__)) describe "FileFields" 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.file_fields(:class => "portrait").to_a.should == [browser.file_field(:class => "portrait")] end end end describe "#length" do it "returns the correct number of file fields" do browser.file_fields.length.should == 2 end end describe "#[]" do it "returns the file field at the given index" do browser.file_fields[0].id.should == "new_user_portrait" end end describe "#each" do it "iterates through file fields correctly" do count = 0 browser.file_fields.each_with_index do |f, index| f.name.should == browser.file_field(:index, index).name f.id.should == browser.file_field(:index, index).id f.value.should == browser.file_field(:index, index).value 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/filefields_spec.rb |
watir-webdriver-0.1.0 | spec/watirspec/filefields_spec.rb |