Sha256: 246ef8dab2d7e8ca636facd2c69510b3209d8c8899328c2596886f0d0b6c25cc

Contents?: true

Size: 1.32 KB

Versions: 28

Compression:

Stored size: 1.32 KB

Contents

Capybara::SpecHelper.spec '#assert_matches_selector' do
  before do
    @session.visit('/with_html')
    @element = @session.find(:css, 'span', text: '42')
  end

  it "should be true if the given selector matches the element" do
    expect(@element.assert_matches_selector(:css, '.number')).to be true
  end

  it "should be false if the given selector does not match the element" do
    expect { @element.assert_matches_selector(:css, '.not_number') }.to raise_error(Capybara::ElementNotFound)
  end

  it "should not be callable on the session" do
    expect { @session.assert_matches_selector(:css, '.number') }.to raise_error(NoMethodError)
  end

  it "should wait for match to occur", requires: [:js] do
    @session.visit('/with_js')
    input = @session.find(:css, '#disable-on-click')

    expect(input.assert_matches_selector(:css, 'input:enabled')).to be true
    input.click
    expect(input.assert_matches_selector(:css, 'input:disabled')).to be true
  end

  it "should not accept count options" do
    expect { @element.assert_matches_selector(:css, '.number', count: 1) }.to raise_error(ArgumentError)
  end

  it "should accept a filter block" do
    @element.assert_matches_selector(:css, 'span') { |el| el[:class] == "number" }
    @element.assert_not_matches_selector(:css,'span') { |el| el[:class] == "not_number" }
  end
end

Version data entries

28 entries across 24 versions & 3 rubygems

Version Path
tdiary-5.0.8 vendor/bundle/gems/capybara-2.18.0/lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.8 vendor/bundle/ruby/2.5.0/gems/capybara-2.18.0/lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/capybara-2.16.1/lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.18.0 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.17.0 lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.7 vendor/bundle/gems/capybara-2.16.1/lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.16.1 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.16.0 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.15.4 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.15.3 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.15.2 lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.6 vendor/bundle/gems/capybara-2.15.1/lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.15.1 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.15.0 lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.5 vendor/bundle/gems/capybara-2.13.0/lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/capybara-2.13.0/lib/capybara/spec/session/element/assert_match_selector.rb
tdiary-5.0.5 vendor/bundle/gems/capybara-2.14.3/lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.14.4 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.14.3 lib/capybara/spec/session/element/assert_match_selector.rb
capybara-2.14.2 lib/capybara/spec/session/element/assert_match_selector.rb