Sha256: 79582d9e2cba06eb73c61c557ae62b7c8865ddd723777e97c7518dc5380fe1cf
Contents?: true
Size: 974 Bytes
Versions: 38
Compression:
Stored size: 974 Bytes
Contents
require "watirspec_helper" describe "Ems" 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.ems(class: "important-class").to_a).to eq [browser.em(class: "important-class")] end end describe "#length" do it "returns the number of ems" do expect(browser.ems.length).to eq 1 end end describe "#[]" do it "returns the em at the given index" do expect(browser.ems[0].id).to eq "important-id" end end describe "#each" do it "iterates through ems correctly" do count = 0 browser.ems.each_with_index do |e, index| expect(e.text).to eq browser.em(index: index).text expect(e.id).to eq browser.em(index: index).id expect(e.class_name).to eq browser.em(index: index).class_name count += 1 end expect(count).to be > 0 end end end
Version data entries
38 entries across 38 versions & 1 rubygems