Sha256: 41eddf06ebe203d76ad0d532dda177b910c206772f11e825239b624e7cc5a358

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

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

describe "TextFields" do
  
  before :all do
    @ie = IE.new
    add_spec_checker(@ie)    
  end

  before :each do
    @ie.goto(TEST_HOST + "/forms_with_input_elements.html")
  end
  
  describe "#length" do
    it "should return the number of text fields" do
      @ie.text_fields.length.should == 9
    end
  end
  
  describe "#[]" do
    it "should return the text field at the given index" do
      @ie.text_fields[1].id.should == "new_user_first_name"
      @ie.text_fields[2].id.should == "new_user_last_name"
      @ie.text_fields[3].id.should == "new_user_email"
    end
  end
  
  describe "#each" do
    it "should iterate through text fields correctly" do
      index = 1
      @ie.text_fields.each do |r|
        r.name.should == @ie.text_field(:index, index).name
        r.id.should ==  @ie.text_field(:index, index).id
        r.value.should == @ie.text_field(:index, index).value
        index += 1
      end
      @ie.text_fields.length.should == index - 1
    end
  end

  after :all do
    @ie.close
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
celerity-0.0.1 spec/text_fields_spec.rb