# File lib/selenium/remote_control/remote_control.rb, line 8
 8:       def initialize(host, port, options={})
 9:         @host, @port = host, port
10:         @timeout_in_seconds = options[:timeout] || (2 * 60)
11:         @shutdown_command = options[:shutdown_command] || "shutDownSeleniumServer"
12:         @firefox_profile = options[:firefox_profile]
13:         @additional_args = options[:additional_args] || []
14:         @shell = Nautilus::Shell.new
15:       end