# File lib/selenium/remote_control/remote_control.rb, line 17 17: def start(options = {}) 18: command = "java -jar \"#{jar_file}\"" 19: command << " -port #{@port}" 20: command << " -timeout #{@timeout_in_seconds}" 21: command << " -firefoxProfileTemplate '#{@firefox_profile}'" if @firefox_profile 22: command << " #{additional_args.join(' ')}" unless additional_args.empty? 23: command << " > #{log_to}" if log_to 24: 25: @shell.run command, {:background => options[:background]} 26: end