Class: Ferrum::Browser::Chrome

Inherits:
Command
  • Object
show all
Defined in:
lib/ferrum/browser/chrome.rb

Constant Summary collapse

DEFAULT_OPTIONS =
{
  "headless" => nil,
  "disable-gpu" => nil,
  "hide-scrollbars" => nil,
  "mute-audio" => nil,
  "enable-automation" => nil,
  "disable-web-security" => nil,
  "disable-session-crashed-bubble" => nil,
  "disable-breakpad" => nil,
  "disable-sync" => nil,
  "no-first-run" => nil,
  "use-mock-keychain" => nil,
  "keep-alive-for-test" => nil,
  "disable-popup-blocking" => nil,
  "disable-extensions" => nil,
  "disable-hang-monitor" => nil,
  "disable-features" => "site-per-process,TranslateUI",
  "disable-translate" => nil,
  "disable-background-networking" => nil,
  "enable-features" => "NetworkService,NetworkServiceInProcess",
  "disable-background-timer-throttling" => nil,
  "disable-backgrounding-occluded-windows" => nil,
  "disable-client-side-phishing-detection" => nil,
  "disable-default-apps" => nil,
  "disable-dev-shm-usage" => nil,
  "disable-ipc-flooding-protection" => nil,
  "disable-prompt-on-repost" => nil,
  "disable-renderer-backgrounding" => nil,
  "force-color-profile" => "srgb",
  "metrics-recording-only" => nil,
  "safebrowsing-disable-auto-update" => nil,
  "password-store" => "basic",
  # Note: --no-sandbox is not needed if you properly setup a user in the container.
  # https://github.com/ebidel/lighthouse-ci/blob/master/builder/Dockerfile#L35-L40
  # "no-sandbox" => nil,
}.freeze
MAC_BIN_PATH =
[
  "/Applications/Chromium.app/Contents/MacOS/Chromium",
  "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
].freeze
LINUX_BIN_PATH =
%w[chromium google-chrome-unstable google-chrome-beta
google-chrome chrome chromium-browser
google-chrome-stable].freeze

Constants inherited from Command

Ferrum::Browser::Command::BROWSER_HOST, Ferrum::Browser::Command::BROWSER_PORT, Ferrum::Browser::Command::NOT_FOUND

Instance Attribute Summary

Attributes inherited from Command

#flags, #options, #path

Method Summary

Methods inherited from Command

build, #initialize, #to_a

Constructor Details

This class inherits a constructor from Ferrum::Browser::Command