Sha256: ff882c89971e4d4eee96bc21eee29360f2849e207eb995946bc3b5cfe01b07cc

Contents?: true

Size: 1017 Bytes

Versions: 1

Compression:

Stored size: 1017 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

1 entries across 1 versions & 1 rubygems

Version Path
watir-6.10.1 spec/watirspec/elements/ems_spec.rb