module Capybara::RSpecMatchers::Compound
def and(matcher)
def and(matcher) Capybara::RSpecMatchers::Compound::And.new(self, matcher) end
def and_then(matcher)
def and_then(matcher) ::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher) end
def or(matcher)
def or(matcher) Capybara::RSpecMatchers::Compound::Or.new(self, matcher) end