class Capybara::Config

def threadsafe=(bool)

def threadsafe=(bool)
  warn "Capybara.threadsafe == true is a BETA feature and may change in future minor versions" if bool
  raise "Threadsafe setting cannot be changed once a session is created" if (bool != threadsafe) && Session.instance_created?
  @threadsafe = bool
end