class AutomationObject::BluePrint::PageObjectAdapter::AutomaticModalChange
Modal
composite
Public Instance Methods
close()
click to toggle source
@return [Boolean]
# File lib/automation_object/blue_print/page_object_adapter/automatic_modal_change.rb, line 28 def close get_property(:close) || false end
modal_name()
click to toggle source
@return [Symbol, nil]
# File lib/automation_object/blue_print/page_object_adapter/automatic_modal_change.rb, line 11 def modal_name modal_name = get_property(:modal_name) case modal_name when Symbol, String return modal_name.to_sym else return nil end end
number_of_checks()
click to toggle source
@return [Integer]
# File lib/automation_object/blue_print/page_object_adapter/automatic_modal_change.rb, line 23 def number_of_checks get_property(:number_of_checks) || 1 end