# File lib/rfuzz/browser.rb, line 30 30: def start(uri, ops={}) 31: @response = @client.get(uri,ops) 32: if @response.http_status != "200" 33: raise "Invalid status: #{@response.http_status}" 34: end 35: 36: @doc = Hpricot(@response.http_body) 37: end