Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 9, 2019 09:26
Show Gist options
  • Save igaiga/2d68ab1bbc276d63eb73b70722627003 to your computer and use it in GitHub Desktop.
Save igaiga/2d68ab1bbc276d63eb73b70722627003 to your computer and use it in GitHub Desktop.
# $ gem i selenium-webdriver
require "selenium-webdriver"
options = Selenium::WebDriver::Chrome::Options.new
options.add_argument('--headless')
# headless指定すると普段Chromeで指定しているフォント指定が効かなくなる
driver = Selenium::WebDriver.for :chrome, options: options
driver.get("https://igarashikuniaki.net/diary/")
driver.save_screenshot("ss.png")
driver.quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment