Class: Puppeteer::Launcher::LaunchOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/puppeteer/launcher/launch_options.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ LaunchOptions

Returns a new instance of LaunchOptions.



34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/puppeteer/launcher/launch_options.rb', line 34

def initialize(options)
  @channel = options[:channel]
  @executable_path = options[:executable_path]
  @ignore_default_args = options[:ignore_default_args] || false
  @handle_SIGINT = options.fetch(:handle_SIGINT, true)
  @handle_SIGTERM = options.fetch(:handle_SIGTERM, true)
  @handle_SIGHUP = options.fetch(:handle_SIGHUP, true)
  @timeout = options[:timeout] || 30000
  @dumpio = options[:dumpio] || false
  @env = options[:env] || ENV
  @pipe = options[:pipe] || false
  @extra_prefs_firefox = options[:extra_prefs_firefox] || {}
end

Instance Attribute Details

#channelObject (readonly)

Returns the value of attribute channel.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def channel
  @channel
end

#envObject (readonly)

Returns the value of attribute env.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def env
  @env
end

#executable_pathObject (readonly)

Returns the value of attribute executable_path.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def executable_path
  @executable_path
end

#extra_prefs_firefoxObject (readonly)

Returns the value of attribute extra_prefs_firefox.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def extra_prefs_firefox
  @extra_prefs_firefox
end

#ignore_default_argsObject (readonly)

Returns the value of attribute ignore_default_args.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def ignore_default_args
  @ignore_default_args
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



48
49
50
# File 'lib/puppeteer/launcher/launch_options.rb', line 48

def timeout
  @timeout
end

Instance Method Details

#dumpio?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/puppeteer/launcher/launch_options.rb', line 62

def dumpio?
  @dumpio
end

#handle_SIGHUP?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/puppeteer/launcher/launch_options.rb', line 58

def handle_SIGHUP?
  @handle_SIGHUP
end

#handle_SIGINT?Boolean

Returns:

  • (Boolean)


50
51
52
# File 'lib/puppeteer/launcher/launch_options.rb', line 50

def handle_SIGINT?
  @handle_SIGINT
end

#handle_SIGTERM?Boolean

Returns:

  • (Boolean)


54
55
56
# File 'lib/puppeteer/launcher/launch_options.rb', line 54

def handle_SIGTERM?
  @handle_SIGTERM
end

#pipe?Boolean

Returns:

  • (Boolean)


66
67
68
# File 'lib/puppeteer/launcher/launch_options.rb', line 66

def pipe?
  @pipe
end