Skip to content

Instantly share code, notes, and snippets.

@samnissen
Created June 9, 2018 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samnissen/730be7b78fb9f3b4e2080a0515f60690 to your computer and use it in GitHub Desktop.
Save samnissen/730be7b78fb9f3b4e2080a0515f60690 to your computer and use it in GitHub Desktop.
Capture / display the console log output from a page load with Watir
require 'watir'
b = Watir::Browser.new
b.goto "https://nytimes.com"
b.driver.manage.logs.get(:browser).each do |log|
puts log
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment