Sha256: 7182b6f9f789104e0135e3f8970a25a875cbf120dfd1e808ff0481386925af22

Contents?: true

Size: 1023 Bytes

Versions: 1

Compression:

Stored size: 1023 Bytes

Contents

require "watirspec_helper"

describe "Links" 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.links(title: "link_title_2").to_a).to eq [browser.link(title: "link_title_2")]
    end
  end

  describe "#length" do
    it "returns the number of links" do
      expect(browser.links.length).to eq 7
    end
  end

  describe "#[]" do
    it "returns the link at the given index" do
      expect(browser.links[2].id).to eq "link_3"
    end

    it "returns a Link object also when the index is out of bounds" do
      expect(browser.links[2000]).to_not be_nil
    end
  end

  describe "#each" do
    it "iterates through links correctly" do
      count = 0

      browser.links.each_with_index do |c, index|
        expect(c.id).to eq browser.link(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/links_spec.rb