Class: Webdrone::Shot

Inherits:
Object
  • Object
show all
Defined in:
lib/webdrone/shot.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(a0) ⇒ Shot

Returns a new instance of Shot.



11
12
13
# File 'lib/webdrone/shot.rb', line 11

def initialize(a0)
  @a0 = a0
end

Instance Attribute Details

#a0Object

Returns the value of attribute a0.



9
10
11
# File 'lib/webdrone/shot.rb', line 9

def a0
  @a0
end

Instance Method Details

#screen(name) ⇒ Object



15
16
17
18
19
20
21
22
# File 'lib/webdrone/shot.rb', line 15

def screen(name)
  @counter = (@counter || 0) + 1
  filename = sprintf "screenshot-%04d-%s.png", @counter, name
  filename = File.join(@a0.conf.outdir, filename)
  @a0.driver.save_screenshot filename
rescue => exception
  Webdrone.report_error(@a0, exception, Kernel.caller_locations)
end