class Capybara::Config

def threadsafe=(bool)

def threadsafe=(bool)
  raise 'Threadsafe setting cannot be changed once a session is created' if (bool != threadsafe) && Session.instance_created?
  @threadsafe = bool
end