Module: Appium::Core::Ios::Xcuitest::Device::Screen

Defined in:
lib/appium_lib_core/ios/xcuitest/device/screen.rb

Class Method Summary collapse

Class Method Details

.add_methodsObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/appium_lib_core/ios/xcuitest/device/screen.rb', line 21

def self.add_methods
  ::Appium::Core::Device.add_endpoint_method(:start_recording_screen) do
    # rubocop:disable Metrics/ParameterLists
    def start_recording_screen(remote_path: nil, user: nil, pass: nil, method: 'PUT', force_restart: nil,
                               video_type: 'mjpeg', time_limit: '180', video_quality: 'medium',
                               video_fps: nil, video_scale: nil, pixel_format: nil)
      option = ::Appium::Core::Base::Device::ScreenRecord.new(
        remote_path: remote_path, user: user, pass: pass, method: method, force_restart: force_restart
      ).upload_option

      option[:videoType] = video_type
      option[:timeLimit] = time_limit
      option[:videoQuality] = video_quality

      option[:videoFps] = video_fps unless video_fps.nil?
      option[:videoScale] = video_scale unless video_scale.nil?
      option[:pixelFormat] = pixel_format unless pixel_format.nil?

      execute(:start_recording_screen, {}, { options: option })
    end
    # rubocop:enable Metrics/ParameterLists
  end
end