Class: AutomationObject::PageObject::Base
- Inherits:
- 
      Object
      
        - Object
- AutomationObject::PageObject::Base
 
- Defined in:
- lib/automation_object/page_object/base.rb
Direct Known Subclasses
Configuration, Element, ElementArray, ElementHash, Modal, Screen
Class Attribute Summary collapse
- 
  
    
      .configuration  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute configuration. 
Class Method Summary collapse
Class Attribute Details
.configuration ⇒ Object
Returns the value of attribute configuration
| 5 6 7 | # File 'lib/automation_object/page_object/base.rb', line 5 def configuration @configuration end | 
Class Method Details
.get_property(name) ⇒ Object
| 16 17 18 | # File 'lib/automation_object/page_object/base.rb', line 16 def get_property(name) self.configuration[name] end | 
.set_property(name, value) ⇒ Object
| 12 13 14 | # File 'lib/automation_object/page_object/base.rb', line 12 def set_property(name, value) self.configuration[name] = value end |