Class: Capybara::RSpecMatchers::Matchers::MatchSelector
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: | |
| Instance Chain: 
          self,
           HaveSelector,CountableWrappedElementMatcher,RSpecMatchers::SpatialSugar,RSpecMatchers::CountSugar,WrappedElementMatcher,Base,Compound,
          RSpec::Matchers::Composable | |
| Inherits: | Capybara::RSpecMatchers::Matchers::HaveSelector 
 | 
| Defined in: | lib/capybara/rspec/matchers/match_selector.rb | 
Class Method Summary
Instance Attribute Summary
Base - Inherited
Instance Method Summary
HaveSelector - Inherited
RSpecMatchers::SpatialSugar - Included
RSpecMatchers::CountSugar - Included
WrappedElementMatcher - Inherited
Base - Inherited
Compound - Included
Constructor Details
This class inherits a constructor from Capybara::RSpecMatchers::Matchers::HaveSelector
Instance Method Details
#description
[ GitHub ]# File 'lib/capybara/rspec/matchers/match_selector.rb', line 17
def description "match #{query.description}" end
    #element_does_not_match?(el)  ⇒ Boolean 
  
# File 'lib/capybara/rspec/matchers/match_selector.rb', line 13
def element_does_not_match?(el) el.assert_not_matches_selector(*@args, **, &@filter_block) end
    #element_matches?(el)  ⇒ Boolean 
  
# File 'lib/capybara/rspec/matchers/match_selector.rb', line 9
def element_matches?(el) el.assert_matches_selector(*@args, **, &@filter_block) end
#query
[ GitHub ]# File 'lib/capybara/rspec/matchers/match_selector.rb', line 21
def query @query ||= Capybara::Queries::MatchQuery.new(*session_query_args, **, &@filter_block) end