Sha256: 7b7ff6c565c827e54afdf3baaa8519712d8fdaac00ab8aee375ab13b05faa028

Contents?: true

Size: 1.58 KB

Versions: 1

Compression:

Stored size: 1.58 KB

Contents

require "watirspec_helper"

describe "TableRows" do

  before :each do
    browser.goto(WatirSpec.url_for("tables.html"))
  end

  describe "with selectors" do
    it "returns the matching elements" do
      expect(browser.trs(id: "outer_second").to_a).to eq [browser.tr(id: "outer_second")]
    end
  end

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

    it "returns the correct number of cells (page context)" do
      expect(browser.trs.length).to eq 14
    end
  end

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

    it "returns the row at the given index (page context)" do
      expect(browser.trs[0].id).to eq "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|
        expect(r.id).to eq inner_table.tr(index: index).id
        count += 1
      end
      expect(count).to be > 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|
        expect(r.id).to eq outer_table.tr(index: index).id
        count += 1
      end

      expect(count).to be > 0
    end
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-6.10.1 spec/watirspec/elements/trs_spec.rb