Sha256: c14eae577a330ef7e792adaae9fb9bcb343eaeadf4f4b3123ac7e50a21f571e8

Contents?: true

Size: 1.47 KB

Versions: 11

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

Capybara::SpecHelper.spec '#find_link' do
  before do
    @session.visit('/with_html')
  end

  it "should find any link" do
    expect(@session.find_link('foo').text).to eq("ullamco")
    expect(@session.find_link('labore')[:href]).to match %r{/with_simple_html$}
  end

  context "aria_label attribute with Capybara.enable_aria_label" do
    it "should find when true" do
      Capybara.enable_aria_label = true
      expect(@session.find_link('Go to simple')[:href]).to match %r{/with_simple_html$}
    end

    it "should not find when false" do
      Capybara.enable_aria_label = false
      expect { @session.find_link('Go to simple') }.to raise_error(Capybara::ElementNotFound)
    end
  end

  it "casts to string" do
    expect(@session.find_link(:foo).text).to eq("ullamco")
  end

  it "should raise error if the field doesn't exist" do
    expect do
      @session.find_link('Does not exist')
    end.to raise_error(Capybara::ElementNotFound)
  end

  context "with :exact option" do
    it "should accept partial matches when false" do
      expect(@session.find_link('abo', exact: false).text).to eq("labore")
    end

    it "should not accept partial matches when true" do
      expect do
        @session.find_link('abo', exact: true)
      end.to raise_error(Capybara::ElementNotFound)
    end
  end

  context "without locator" do
    it "should use options" do
      expect(@session.find_link(href: '#anchor').text).to eq "Normal Anchor"
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
tdiary-5.0.9 vendor/bundle/gems/capybara-3.2.1/lib/capybara/spec/session/find_link_spec.rb
capybara-3.2.1 lib/capybara/spec/session/find_link_spec.rb
capybara-3.2.0 lib/capybara/spec/session/find_link_spec.rb
capybara-3.1.1 lib/capybara/spec/session/find_link_spec.rb
capybara-3.1.0 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.3 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.2 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.1 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.0 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.0.rc2 lib/capybara/spec/session/find_link_spec.rb
capybara-3.0.0.rc1 lib/capybara/spec/session/find_link_spec.rb