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)


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

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

Instance Attribute Details

#action_resultsArray[ActionResult] (readonly)

Returns the value of attribute action_results.

Returns:



320
321
322
# File 'sig/types.rbs', line 320

def action_results
  @action_results
end

#final_htmlString (readonly)

Returns the value of attribute final_html.

Returns:

  • (String)


321
322
323
# File 'sig/types.rbs', line 321

def final_html
  @final_html
end

#final_urlString (readonly)

Returns the value of attribute final_url.

Returns:

  • (String)


322
323
324
# File 'sig/types.rbs', line 322

def final_url
  @final_url
end

#screenshot_base64String? (readonly)

Returns the value of attribute screenshot_base64.

Returns:

  • (String, nil)


323
324
325
# File 'sig/types.rbs', line 323

def screenshot_base64
  @screenshot_base64
end