module Capybara::Flow

Constants

MATCHERS
USER_ACTIONS
VERSION

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/capybara/flow.rb, line 11
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/capybara/flow.rb, line 15
def self.configure
  yield(configuration)
end
included(base) click to toggle source
# File lib/capybara/flow.rb, line 19
def self.included(base)
  base.send(:prepend, UserActions)
end

Public Instance Methods

recorder() click to toggle source
# File lib/capybara/flow.rb, line 23
def recorder
  @recorder ||= EmptyRecorder.new
end
recorder=(other) click to toggle source
# File lib/capybara/flow.rb, line 27
def recorder=(other)
  @recorder = other
end