Sha256: 55531817c443d842d0ed871a243d2eac9e731af750a613bd163731d915234c69
Contents?: true
Size: 834 Bytes
Versions: 30
Compression:
Stored size: 834 Bytes
Contents
require "watirspec_helper" describe "Spans" do before :each do browser.goto(WatirSpec.url_for("non_control_elements.html")) end describe "with selectors" do it "returns the matching elements" do expect(browser.spans(class: "footer").to_a).to eq [browser.span(class: "footer")] end end describe "#length" do it "returns the number of spans" do expect(browser.spans.length).to eq 6 end end describe "#[]" do it "returns the p at the given index" do expect(browser.spans[0].id).to eq "lead" end end describe "#each" do it "iterates through spans correctly" do count = 0 browser.spans.each_with_index do |s, index| expect(s.id).to eq browser.span(index: index).id count += 1 end expect(count).to be > 0 end end end
Version data entries
30 entries across 30 versions & 1 rubygems