Created
February 25, 2015 01:53
-
-
Save sanryuu/8d5a328be19bdda75171 to your computer and use it in GitHub Desktop.
CapybaraとSeleniumを使って少ないコードで実行を試す。
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
#! /usr/bin/env ruby | |
require "capybara" | |
require "selenium-webdriver" | |
session = Capybara::Session.new(:selenium) | |
session.visit 'http://example.com' | |
session.save_screenshot('screenshot.png') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment