Sha256: 81b12eabc81ad20536783c507c8c5e7943444fd41551e8fd871915f72f8a2527
Contents?: true
Size: 424 Bytes
Versions: 3
Compression:
Stored size: 424 Bytes
Contents
# Screenshots Taking screenshots requires automating a browser. === "Ferrum" ```ruby class DummyJob < Wayfarer::Base route.to :index def index browser.screenshot(path: "screenshot.png") end end ``` === "Selenium" ```ruby class DummyJob < Wayfarer::Base route.to :index def index browser.save_screenshot("screenshot.png") end end ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
wayfarer-0.4.7 | docs/cookbook/screenshots.md |
wayfarer-0.4.1 | docs/cookbook/screenshots.md |
wayfarer-0.4.0 | docs/cookbook/screenshots.md |