Class: Crawlberg::InteractionResult

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeInteractionResult

Returns a new instance of InteractionResult.

Parameters:

  • action_results: (Array[ActionResult])
  • final_html: (String)
  • final_url: (String)


137
# File 'sig/types.rbs', line 137

def initialize: (?action_results: Array[ActionResult], ?final_html: String, ?final_url: String) -> void

Instance Attribute Details

#action_resultsArray[ActionResult]?

Returns the value of attribute action_results.

Returns:



133
134
135
# File 'sig/types.rbs', line 133

def action_results
  @action_results
end

#final_htmlString?

Returns the value of attribute final_html.

Returns:

  • (String, nil)


134
135
136
# File 'sig/types.rbs', line 134

def final_html
  @final_html
end

#final_urlString?

Returns the value of attribute final_url.

Returns:

  • (String, nil)


135
136
137
# File 'sig/types.rbs', line 135

def final_url
  @final_url
end