Using watir WebDriver in ruby to pull up instances of firefox and take screenshots. Tried all manner of headless solutions but they would not render with typekit web fonts. Now I have this working, but 1 thing I would really like, a transparent background!
browser = Watir::Browser.new :firefox
browser.goto "#{URL}"
browser.driver.save_screenshot "screenshots/#{font}.png"
browser.close
Thanks, Pete