Method: AutomationObject::BluePrint::HashAdapter::CustomMethod#element_method

Defined in:
lib/automation_object/blue_print/hash_adapter/custom_method.rb

#element_methodObject



15
16
17
18
19
20
21
22
23
24
# File 'lib/automation_object/blue_print/hash_adapter/custom_method.rb', line 15

def element_method
  element_method = hash[:element_method]

  case element_method
  when Symbol, String
    return element_method.to_sym
  else
    return nil
  end
end