Class: Watir::Screenshot

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

Instance Method Summary collapse

Constructor Details

#initialize(browser) ⇒ Screenshot

Returns a new instance of Screenshot.



5
6
7
8
# File 'lib/watir/screenshot.rb', line 5

def initialize(browser)
  @browser = browser
  @driver = browser.wd
end

Instance Method Details

#base64String

Represents screenshot as Base64 encoded string.

Examples:

browser.screenshot.base64
#=> '7HWJ43tZDscPleeUuPW6HhN3x+z7vU/lufmH0qNTtTum94IBWMT46evImci1vnFGT'

Returns:

  • (String)


47
48
49
# File 'lib/watir/screenshot.rb', line 47

def base64
  @driver.screenshot_as(:base64)
end

#pngString

Represents screenshot as PNG image string.

Examples:

browser.screenshot.png
#=> '\x95\xC7\x8C@1\xC07\x1C(Edb\x15\xB2\vL'

Returns:

  • (String)


33
34
35
# File 'lib/watir/screenshot.rb', line 33

def png
  @driver.screenshot_as(:png)
end

#save(path) ⇒ Object

Saves screenshot to given path.

Examples:

browser.screenshot.save "screenshot.png"

Parameters:

  • path (String)


19
20
21
# File 'lib/watir/screenshot.rb', line 19

def save(path)
  @driver.save_screenshot(path)
end