1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/element/match_css_spec.rb

31 lines
1.1 KiB
Ruby

# frozen_string_literal: true
Capybara::SpecHelper.spec '#match_css?' 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).to match_css('span')
expect(@element).to match_css('span.number')
end
it 'should be false if the given selector does not match' do
expect(@element).not_to match_css('div')
expect(@element).not_to match_css('p a#doesnotexist')
expect(@element).not_to match_css('p.nosuchclass')
end
it 'should accept an optional filter block' do
# This would be better done with
expect(@element).to match_css('span') { |el| el[:class] == 'number' }
expect(@element).not_to match_css('span') { |el| el[:class] == 'not_number' }
end
it 'should work with root element found via ancestor' do
el = @session.find(:css, 'body').find(:xpath, '..')
expect(el).to match_css('html')
expect { expect(el).to not_match_css('html') }.to raise_exception(RSpec::Expectations::ExpectationNotMetError)
end
end