Sha256: e71db79b2e107916cd638ee4b36cf3fabc45a5b31999562655fe78e0f4b46b85

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

# encoding: utf-8
require File.expand_path('spec_helper', File.dirname(__FILE__))

describe "TableRows" do

  before :each do
    browser.goto(WatirSpec.files + "/tables.html")
  end

  bug "http://github.com/jarib/celerity/issues#issue/25", :celerity do
    describe "with selectors" do
      it "returns the matching elements" do
        browser.trs(:id => "outer_second").to_a.should == [browser.tr(:id => "outer_second")]
      end
    end
  end

  describe "#length" do
    it "returns the correct number of cells (table context)" do
      browser.table(:id, 'inner').trs.length.should == 1
      browser.table(:id, 'outer').trs.length.should == 4
    end

    it "returns the correct number of cells (page context)" do
      browser.trs.length.should == 14
    end
  end

  describe "#[]" do
    it "returns the row at the given index (table context)" do
      browser.table(:id, 'outer').trs[0].id.should == "outer_first"
    end

    it "returns the row at the given index (page context)" do
      browser.trs[0].id.should == "thead_row_1"
    end
  end

  describe "#each" do
    it "iterates through rows correctly" do
      inner_table = browser.table(:id, 'inner')
      count = 0

      inner_table.trs.each_with_index do |r, index|
        r.id.should == inner_table.tr(:index, index).id
        r.value.should == inner_table.tr(:index, index).value

        count += 1
      end
      count.should > 0
    end

    it "iterates through the outer table correctly" do
      outer_table = browser.table(:id, 'outer')
      count = 0

      outer_table.trs.each_with_index do |r, index|
        r.id.should == outer_table.tr(:index, index).id
        r.value.should == outer_table.tr(: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/trs_spec.rb
watir-webdriver-0.1.0 spec/watirspec/trs_spec.rb