У Ватира нет этого положения для захвата скриншота вместе с URL. Но мы можем использовать win32ole для этого.
require 'win32/screenshot'
Win32 :: Screenshot :: Take.of (: на первом плане) .WRITE (image_path)
В моем случае для захвата полного снимка экрана с URL, я делаю следующее
# Code to capture the full-page screenshot with a URL
require 'watir'
require 'win32ole'
require 'win32/screenshot'
# Launch a browser and navigate to the page
browser = Watir::Browser.new :ie
browser.goto "https://www.google.com"
win_title = browser.title #Fetch the Title
# Use AutoIt to get the focus of the browser to front
WIN32OLE.new("AutoItX3.Control").ControlFocus(win_title, "", "")
# Capture the screen shot of the desktop
sleep 2 # Hold for 2s
image_path = "image_path#{rand(10000)}.png"
Win32::Screenshot::Take.of(:desktop).write(image_path)