Class: Screenshot

Inherits:
Object
  • Object
show all
Defined in:
lib/flick/screenshot.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Screenshot

Returns a new instance of Screenshot.



5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/flick/screenshot.rb', line 5

def initialize options
  Flick::Checker.platform options[:platform]
  self.platform = options[:platform]
  case @platform
  when "ios"
    options[:todir] = options[:outdir]
    self.driver = Flick::Ios.new options
  when "android"
    self.driver = Flick::Android.new options
  end
  setup
end

Instance Attribute Details

#driverObject

Returns the value of attribute driver.



3
4
5
# File 'lib/flick/screenshot.rb', line 3

def driver
  @driver
end

#platformObject

Returns the value of attribute platform.



3
4
5
# File 'lib/flick/screenshot.rb', line 3

def platform
  @platform
end

Instance Method Details

#screenshotObject



18
19
20
21
22
# File 'lib/flick/screenshot.rb', line 18

def screenshot
  puts "Saving to #{driver.outdir}/#{driver.name}.png"
  driver.screenshot driver.name
  driver.pull_file "#{driver.dir_name}/#{driver.name}.png", driver.outdir if android
end