Sha256: 76beb75cef0760abeed677b1339892a2a1dc79167b22059456387a88838d5191
Contents?: true
Size: 874 Bytes
Versions: 1
Compression:
Stored size: 874 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | spec/watirspec/elements/spans_spec.rb |