module Mobile::Emulator::Screencapture
Constants
- VERSION
Public Class Methods
create(**args)
click to toggle source
# File lib/mobile/emulator/screencapture.rb, line 9 def create(**args) if args[:platform] == "android" Mobile::Emulator::Screencapture::Android.new(args) elsif args[:platform] == "ios" Mobile::Emulator::Screencapture::Ios.new(args) else raise "Not support platform: #{args[:platform]}" end end