Skip to content

Instantly share code, notes, and snippets.

View justin-robinson's full-sized avatar

Justin Robinson justin-robinson

View GitHub Profile
@justin-robinson
justin-robinson / application_system_test_case.rb
Created August 21, 2022 15:46
Rails test download helper [thread safe]
require 'test_helper'
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
WINDOW_SIZE = [1400, 1400].freeze
driven_by :selenium, using: :chrome, screen_size: WINDOW_SIZE do |options|
options.add_preference(:download, prompt_for_download: false, default_directory: DownloadHelper::PATH.to_s)
options.add_preference(:browser, set_download_behavior: { behavior: 'allow' })
end
end