# 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 ```