Sha256: 8a09321fd2042a0ccf940da6e6acb4038870b4747436360f4fb9290c9184e619
Contents?: true
Size: 912 Bytes
Versions: 6
Compression:
Stored size: 912 Bytes
Contents
module Watir class Screenshot def initialize(browser) @browser = browser @driver = browser.wd end # # Saves screenshot to given path. # # @example # browser.screenshot.save "screenshot.png" # # @param [String] path # def save(path) @driver.save_screenshot(path) end # # Represents screenshot as PNG image string. # # @example # browser.screenshot.png # #=> '\x95\xC7\x8C@1\xC07\x1C(Edb\x15\xB2\vL' # # @return [String] # def png @driver.screenshot_as(:png) end # # Represents screenshot as Base64 encoded string. # # @example # browser.screenshot.base64 # #=> '7HWJ43tZDscPleeUuPW6HhN3x+z7vU/lufmH0qNTtTum94IBWMT46evImci1vnFGT' # # @return [String] # def base64 @driver.screenshot_as(:base64) end end # Screenshot end # Watir
Version data entries
6 entries across 6 versions & 1 rubygems