Module: Appium::Core::Windows::Device::AppManagement

Defined in:
lib/appium_lib_core/windows/device/app_management.rb

Class Method Summary collapse

Class Method Details

.add_methodsObject

override



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/appium_lib_core/windows/device/app_management.rb', line 21

def self.add_methods
  ::Appium::Core::Device.add_endpoint_method(:launch_app) do
    def launch_app
      execute :launch_app
    end
  end

  ::Appium::Core::Device.add_endpoint_method(:close_app) do
    def close_app
      execute :close_app
    end
  end
end