Class: AutomationObject::PageObject::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/automation_object/page_object/base.rb

Direct Known Subclasses

Configuration, Element, ElementArray, ElementHash, Modal, Screen

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject

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