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)
  • screenshot_base64: (String)


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

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

Instance Attribute Details

#action_resultsArray[ActionResult]?

Returns the value of attribute action_results.

Returns:



140
141
142
# File 'sig/types.rbs', line 140

def action_results
  @action_results
end

#final_htmlString?

Returns the value of attribute final_html.

Returns:

  • (String, nil)


141
142
143
# File 'sig/types.rbs', line 141

def final_html
  @final_html
end

#final_urlString?

Returns the value of attribute final_url.

Returns:

  • (String, nil)


142
143
144
# File 'sig/types.rbs', line 142

def final_url
  @final_url
end

#screenshot_base64String?

Returns the value of attribute screenshot_base64.

Returns:

  • (String, nil)


143
144
145
# File 'sig/types.rbs', line 143

def screenshot_base64
  @screenshot_base64
end