Sha256: 15674de6b0eb48936cee1c8d5688bf84fb336a40896dcff91fb56468f0b00a68
Contents?: true
Size: 1006 Bytes
Versions: 1
Compression:
Stored size: 1006 Bytes
Contents
require "watirspec_helper" describe "Dls" do before :each do browser.goto(WatirSpec.url_for("definition_lists.html")) end describe "with selectors" do it "returns the matching elements" do expect(browser.dls(title: "experience").to_a).to eq [browser.dl(title: "experience")] end end describe "#length" do it "returns the number of dls" do expect(browser.dls.length).to eq 3 end end describe "#[]" do it "returns the dl at the given index" do expect(browser.dls[0].id).to eq "experience-list" end end describe "#each" do it "iterates through dls correctly" do count = 0 browser.dls.each_with_index do |d, index| expect(d.text).to eq browser.dl(index: index).text expect(d.id).to eq browser.dl(index: index).id expect(d.class_name).to eq browser.dl(index: index).class_name 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/dls_spec.rb |