Sha256: f165a11f6256aae2ef4de4d08d94c90a504fef43a878b0b753450cf248748a10

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

class NodeWrapper
  def initialize(element); @element = element end
  def to_capybara_node(); @element end
end

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

  it 'should support have_xxx expectations' do
    para = NodeWrapper.new(@session.find(:css, '#first'))
    expect(para).to have_link('ullamco')
  end

  it 'should support within' do
    para = NodeWrapper.new(@session.find(:css, '#first'))
    expect(@session).to have_css('#second')
    @session.within(para) do
      expect(@session).to have_link('ullamco')
      expect(@session).not_to have_css('#second')
    end
  end

  it 'should generate correct errors' do
    para = NodeWrapper.new(@session.find(:css, '#first'))
    expect do
      expect(para).to have_text('Header Class Test One')
    end.to raise_error(/^expected to find text "Header Class Test One" in "Lore/)
    expect do
      expect(para).to have_css('#second')
    end.to raise_error(/^expected to find css "#second" within #<Capybara::Node::Element/)
    expect do
      expect(para).to have_link(href: %r{/without_simple_html})
    end.to raise_error(%r{^expected to find link with href matching /\\/without_simple_html/ within #<Capybara::Node::Element})
  end
end

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/capybara-3.40.0/lib/capybara/spec/session/node_wrapper_spec.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/capybara-3.40.0/lib/capybara/spec/session/node_wrapper_spec.rb
capybara-3.40.0 lib/capybara/spec/session/node_wrapper_spec.rb