Created
October 9, 2019 09:26
-
-
Save igaiga/2d68ab1bbc276d63eb73b70722627003 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# $ 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