12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # This file registers the custom Zammad chrome and firefox drivers.
- # The options check if a REMOTE_URL ENV is given and change the
- # configurations accordingly.
- Capybara.register_driver(:zammad_chrome) do |app|
- # Turn on browser logs
- capabilities = Selenium::WebDriver::Remote::Capabilities.chrome(
- loggingPrefs: {
- browser: 'ALL'
- },
- )
- options = {
- browser: :chrome,
- desired_capabilities: capabilities,
- }
- if ENV['REMOTE_URL'].present?
- options[:browser] = :remote
- options[:url] = ENV['REMOTE_URL']
- end
- Capybara::Selenium::Driver.new(app, options)
- end
- Capybara.register_driver(:zammad_firefox) do |app|
- profile = Selenium::WebDriver::Firefox::Profile.new
- profile['intl.locale.matchOS'] = false
- profile['intl.accept_languages'] = 'en-US'
- profile['general.useragent.locale'] = 'en-US'
- capabilities = Selenium::WebDriver::Remote::Capabilities.firefox(
- firefox_profile: profile,
- )
- options = {
- browser: :firefox,
- desired_capabilities: capabilities,
- }
- if ENV['REMOTE_URL'].present?
- options[:browser] = :remote
- options[:url] = ENV['REMOTE_URL']
- end
- Capybara::Selenium::Driver.new(app, options)
- end
|