Sha256: 98d356f3c1b95a136c22df5b744c3f6c2bbf61f3a94d16410d349be47447fa7a
Contents?: true
Size: 1.07 KB
Versions: 38
Compression:
Stored size: 1.07 KB
Contents
require "watirspec_helper" describe "IFrames" do before :each do browser.goto(WatirSpec.url_for("iframes.html")) end describe "with selectors" do it "returns the matching elements" do expect(browser.iframes(id: "iframe_2").to_a).to eq [browser.iframe(id: "iframe_2")] end end describe "eql?" do it "matches equality of iframe with that from a collection" do expect(browser.iframes.last).to eq browser.iframe(id: "iframe_2") end end describe "#length" do it "returns the correct number of iframes" do expect(browser.iframes.length).to eq 2 end end describe "#[]" do it "returns the iframe at the given index" do expect(browser.iframes[0].id).to eq "iframe_1" end end describe "#each" do it "iterates through frames correctly" do count = 0 browser.iframes.each_with_index do |f, index| expect(f.name).to eq browser.iframe(index: index).name expect(f.id).to eq browser.iframe(index: index).id count += 1 end expect(count).to be > 0 end end end
Version data entries
38 entries across 38 versions & 1 rubygems