Created
August 7, 2016 16:24
-
-
Save olmstadfm/54a235739603fd96c248623092d19742 to your computer and use it in GitHub Desktop.
watir + chrome + headless
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'watir-webdriver' | |
require 'headless' | |
headless = Headless.new | |
headless.start | |
browser = Watir::Browser.new :chrome | |
browser.goto 'ya.ru' | |
browser.screenshot.save 'screenshot.png' | |
puts browser.title | |
browser.close | |
headless.destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment