Sha256: d6218bc86c761bf8f5448198d0323980b321ba6ba539203d43ea6548bd4cd837
Contents?: true
Size: 834 Bytes
Versions: 8
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 7 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
8 entries across 8 versions & 1 rubygems