Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PavloBezpalov/6846cd94eac87deed3b4134279d6f367 to your computer and use it in GitHub Desktop.
Save PavloBezpalov/6846cd94eac87deed3b4134279d6f367 to your computer and use it in GitHub Desktop.
Rails 5.1 System Test driven by headless chrome.
driven_by(
:selenium,
using: :chrome,
screen_size: [1400, 900],
options: {
desired_capabilities: {
chromeOptions: {
args: %w[headless disable-gpu],
prefs: {
'modifyheaders.headers.name' => 'Accept-Language',
'modifyheaders.headers.value' => 'ja,en',
},
},
},
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment