# File lib/selenium/client/base.rb, line 83 83: def start_new_browser_session(options={}) 84: options_as_string = options.collect {|key,value| "#{key.to_s}=#{value.to_s}"}.sort.join(";") 85: result = string_command "getNewBrowserSession", [@browser_string, @browser_url, @extension_js, options_as_string] 86: @session_id = result 87: # Consistent timeout on the remote control and driver side. 88: # Intuitive and this is what you want 90% of the time 89: self.remote_control_timeout_in_seconds = @default_timeout_in_seconds 90: self.highlight_located_element = true if highlight_located_element_by_default 91: end