module RSpec::Rails::SystemExampleGroup

def app

Delegates to `Rails.application`.
def app
  ::Rails.application
end

def driven_by(*args, &blk)

def driven_by(*args, &blk)
  @driver = ::ActionDispatch::SystemTestCase.driven_by(*args, &blk).tap(&:use)
end

def initialize(*args, &blk)

def initialize(*args, &blk)
  super(*args, &blk)
  @driver = nil
end

def method_name

Other tags:
    Private: -
def method_name
  @method_name ||= [
    self.class.name.underscore,
    RSpec.current_example.description.underscore
  ].join("_").tr(CHARS_TO_TRANSLATE.join, "_")[0...200] + "_#{rand(1000)}"
end

def passed?

for the SystemTesting Screenshot situation
def passed?
  return false if RSpec.current_example.exception
  return true unless defined?(::RSpec::Expectations::FailureAggregator)
  failure_notifier = ::RSpec::Support.failure_notifier
  return true unless failure_notifier.is_a?(::RSpec::Expectations::FailureAggregator)
  failure_notifier.failures.empty? && failure_notifier.other_errors.empty?
end