Sha256: 55924859ab3a8a864d522796831fef0201c3ce9f9faead3df21e12f09c97eb74
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
require "watirspec_helper" describe "TableCells" do before :each do browser.goto(WatirSpec.url_for("tables.html")) end describe "with selectors" do it "returns the matching elements" do expect(browser.tds(headers: "before_tax").to_a).to eq [browser.td(headers: "before_tax")] end end # describe "#length" do # it "returns the number of cells" do # browser.table(id: 'outer').cells.length.to eq 6 # browser.table(id: 'inner').cells.length.to eq 2 # end # end # # describe "#[]" do # it "returns the row at the given index" do # browser.table(id: 'outer').cells[0].text.to eq "Table 1, Row 1, Cell 1" # browser.table(id: 'inner').cells[0].text.to eq "Table 2, Row 1, Cell 1" # browser.table(id: 'outer').cells[6].text.to eq "Table 1, Row 3, Cell 2" # end # end describe "#each" do it "iterates through all cells on the page correctly" do count = 0 browser.tds.each_with_index do |c, index| expect(c.id).to eq browser.td(index: index).id count += 1 end expect(count).to be > 0 end it "iterates through cells inside a table" do count = 0 inner_table = browser.table(id: 'inner') inner_table.tds.each_with_index do |c, index| expect(c.id).to eq inner_table.td(index: index).id count += 1 end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | spec/watirspec/elements/tds_spec.rb |