Sha256: f02d3a3b9a615e4ff220b53476b2b7a31f3e8623eb3d04aa162e54641f6cc318

Contents?: true

Size: 928 Bytes

Versions: 1

Compression:

Stored size: 928 Bytes

Contents

require File.dirname(__FILE__) + '/spec_helper.rb'

describe "FileFields" do

  before :all do
    @browser = Browser.new(BROWSER_OPTIONS)
  end

  before :each do
    @browser.goto(HTML_DIR + "/forms_with_input_elements.html")
  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[1].id.should == "new_user_portrait"
    end
  end

  describe "#each" do
    it "iterates through file fields correctly" do
      @browser.file_fields.each_with_index do |f, index|
        f.name.should == @browser.file_field(:index, index+1).name
        f.id.should ==  @browser.file_field(:index, index+1).id
        f.value.should == @browser.file_field(:index, index+1).value
      end
    end
  end

  after :all do
    @browser.close
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
caius-celerity-0.0.6.11 spec/filefields_spec.rb