Method: AutomationObject::State::Base#initialize

Defined in:
lib/automation_object/state/_base.rb

#initialize(driver, blue_prints, name = :top, parent = nil, location = 'top') ⇒ Base

Returns a new instance of Base.

Parameters:



20
21
22
23
24
25
# File 'lib/automation_object/state/_base.rb', line 20

def initialize(driver, blue_prints, name = :top, parent = nil, location = 'top')
  self.driver = driver
  self.blue_prints = blue_prints

  super(name, parent, location)
end