Sha256: dfc0a99562ba5cf881a792d1aad340133213fbe4d9d54ace7ea40d4d4ed8b453

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

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

describe "TableHeaders" do

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

  before :each do
    @browser = Browser.new(BROWSER_OPTIONS)
    @browser.goto(HTML_DIR + "/tables.html")
  end

  describe "#length" do
    it "returns the correct number of table theads (page context)" do
      @browser.theads.length.should == 1
    end

    it "returns the correct number of table theads (table context)" do
      @browser.table(:index, 1).theads.length.should == 1
    end
  end

  describe "#[]" do
    it "returns the row at the given index (page context)" do
      @browser.theads[1].id.should == "tax_headers"
    end

    it "returns the row at the given index (table context)" do
      @browser.table(:index, 1).theads[1].id.should == "tax_headers"
    end
  end

  describe "#each" do
      it "iterates through table theads correctly (page context)" do
        @browser.theads.each_with_index do |thead, index|
          thead.name.should == @browser.thead(:index, index+1).name
          thead.id.should == @browser.thead(:index, index+1).id
        end
      end

      it "iterates through table theads correctly (table context)" do
        table = @browser.table(:index, 1)
        table.theads.each_with_index do |thead, index|
          thead.name.should == table.thead(:index, index+1).name
          thead.id.should == table.thead(:index, index+1).id
        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/table_headers_spec.rb