class InteractorUIAutomation::InteractorTest

Attributes

driver[R]
root_view[R]

Public Instance Methods

provide_driver() click to toggle source
# File lib/interactor_ui_automation/minitest/interactor_test.rb, line 19
def provide_driver
  raise('Subclass must define `#provide_driver()`')
end
setup() click to toggle source
Calls superclass method
# File lib/interactor_ui_automation/minitest/interactor_test.rb, line 11
def setup
  super
  @driver = provide_driver
  @root_view = InteractorUIAutomation::Interactor::ViewInteractor.new(@driver)
end